├── .gitignore ├── Assets ├── README.md ├── cat1.jpg ├── cat2.jpg ├── cat3.jpg ├── cat4.jpg ├── cat5.jpg ├── cat6.jpg ├── yamete-3-script.bat ├── yamete-3-script.ps1 ├── yamete-3-script.vbs ├── yamete-kudasai-old.mp3 ├── yamete-kudasai-old.wav ├── yamete-kudasai.mp3 └── yamete-kudasai.wav ├── Payloads ├── Rickroll │ ├── README.md │ ├── rr.ino │ └── rr_mac.ino ├── Script Runner │ ├── README.md │ ├── script_runner_mac.ino │ └── script_runner_win.ino └── Wallpaper Changer │ ├── wallpaper_mac.ino │ └── wallpaper_win.ino ├── README.md └── Shell Scripts ├── bash ├── speak.sh └── wallpaper.sh └── powershell ├── real_bsod.ps1 ├── speak.ps1 ├── wallpaper.ps1 ├── wallpaper_troll.ps1 ├── yamete-1.ps1 ├── yamete-2.ps1 └── yamete-3.ps1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/README.md -------------------------------------------------------------------------------- /Assets/cat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/cat1.jpg -------------------------------------------------------------------------------- /Assets/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/cat2.jpg -------------------------------------------------------------------------------- /Assets/cat3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/cat3.jpg -------------------------------------------------------------------------------- /Assets/cat4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/cat4.jpg -------------------------------------------------------------------------------- /Assets/cat5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/cat5.jpg -------------------------------------------------------------------------------- /Assets/cat6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/cat6.jpg -------------------------------------------------------------------------------- /Assets/yamete-3-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-3-script.bat -------------------------------------------------------------------------------- /Assets/yamete-3-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-3-script.ps1 -------------------------------------------------------------------------------- /Assets/yamete-3-script.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-3-script.vbs -------------------------------------------------------------------------------- /Assets/yamete-kudasai-old.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-kudasai-old.mp3 -------------------------------------------------------------------------------- /Assets/yamete-kudasai-old.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-kudasai-old.wav -------------------------------------------------------------------------------- /Assets/yamete-kudasai.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-kudasai.mp3 -------------------------------------------------------------------------------- /Assets/yamete-kudasai.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Assets/yamete-kudasai.wav -------------------------------------------------------------------------------- /Payloads/Rickroll/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Rickroll/README.md -------------------------------------------------------------------------------- /Payloads/Rickroll/rr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Rickroll/rr.ino -------------------------------------------------------------------------------- /Payloads/Rickroll/rr_mac.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Rickroll/rr_mac.ino -------------------------------------------------------------------------------- /Payloads/Script Runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Script Runner/README.md -------------------------------------------------------------------------------- /Payloads/Script Runner/script_runner_mac.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Script Runner/script_runner_mac.ino -------------------------------------------------------------------------------- /Payloads/Script Runner/script_runner_win.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Script Runner/script_runner_win.ino -------------------------------------------------------------------------------- /Payloads/Wallpaper Changer/wallpaper_mac.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Wallpaper Changer/wallpaper_mac.ino -------------------------------------------------------------------------------- /Payloads/Wallpaper Changer/wallpaper_win.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Payloads/Wallpaper Changer/wallpaper_win.ino -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/README.md -------------------------------------------------------------------------------- /Shell Scripts/bash/speak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/bash/speak.sh -------------------------------------------------------------------------------- /Shell Scripts/bash/wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/bash/wallpaper.sh -------------------------------------------------------------------------------- /Shell Scripts/powershell/real_bsod.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/real_bsod.ps1 -------------------------------------------------------------------------------- /Shell Scripts/powershell/speak.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/speak.ps1 -------------------------------------------------------------------------------- /Shell Scripts/powershell/wallpaper.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/wallpaper.ps1 -------------------------------------------------------------------------------- /Shell Scripts/powershell/wallpaper_troll.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/wallpaper_troll.ps1 -------------------------------------------------------------------------------- /Shell Scripts/powershell/yamete-1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/yamete-1.ps1 -------------------------------------------------------------------------------- /Shell Scripts/powershell/yamete-2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/yamete-2.ps1 -------------------------------------------------------------------------------- /Shell Scripts/powershell/yamete-3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msr8/attiny85/HEAD/Shell Scripts/powershell/yamete-3.ps1 --------------------------------------------------------------------------------