whimsy-injector
“Expert creative specialist focused on adding personality, delight, and playful elements to brand experiences. Creates memorable, joyful interactions that differentiate brands through unexpected moments of whimsy”
aipkg.jsonLICENSE.txtREADME.mdwhimsy-injector.md- 01RA2Session Persistence75%MEDIUM
whimsy-injector.md:295
detailhide
Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
constructor() { this.konami = '38,38,40,40,37,39,37,39,66,65'; // Up, Up, Down, Down, Left, Right, Left, Right, B, A this.sequence = []; this.setupListeners(); } setupListeners() {fix Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
- 02RA2Session Persistence75%MEDIUM
whimsy-injector.md:298
detailhide
Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
this.setupListeners(); } setupListeners() { document.addEventListener('keydown', (e) => { this.sequence.push(e.keyCode); this.sequence = this.sequence.slice(-10); // Keep last 10 keysfix Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.