-
Notifications
You must be signed in to change notification settings - Fork 18
/
filtering.py
407 lines (352 loc) · 11.9 KB
/
filtering.py
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
import re
from typing import List
try:
import filtering_custom
except ImportError:
filtering_custom = None
def is_call_interesting(call: dict, in_admin_or_profile: bool, fuzzer_output_path: str, file_or_action: str):
if filtering_custom:
if filtering_custom.filter_call(call, in_admin_or_profile, fuzzer_output_path, file_or_action):
return False
if call["what"] in ["delete_option", "delete_site_option"]:
if not isinstance(call["data"]["name"], str):
return True
if call["data"]["name"].startswith("_transient_"):
return False
# For now, let's take into account only the possibility to delete
# arbitrary options
return "GARLIC" in call["data"]["name"]
if call["what"] in ["wp_delete_user", "wp_update_user"]:
return True
if call["what"] in ["update_post_meta"]:
return "GARLIC" in str(call)
if call["what"] in ["update_user_meta"]:
if call["data"]["meta_key"] in [
"wc_last_active",
"_woocommerce_tracks_anon_id",
"_woocommerce_persistent_cart_1",
]:
return False
return True
if call["what"] in ["wp_insert_post"]:
return "GARLIC" in str(call)
if call["what"] in ["wp_mail"]:
if (
call["data"]["to"] == "[email protected]"
and call["data"]["subject"] == "[fuzz] Your Site is Experiencing a Technical Issue"
):
return False
return True
if call["what"] in ["update_option", "update_site_option"]:
if call["data"]["name"] in [
"_transient_doing_cron",
"fs_options",
"fs_accounts",
"jetpack_connection_xmlrpc_errors",
"jetpack_connection_xmlrpc_verified_errors",
"elementor_log",
"wpins_block_notice",
"wpins_allow_tracking",
]:
return False
call["data"]["name"] = str(call["data"]["name"])
if call["data"]["name"].startswith("_transient_timeout_"):
return False
if "_admin_notice" in call["data"]["name"] and "two_week_review" in call["data"]["value"]:
return False
if call["data"]["name"] in ["active_plugins", "auto_update"]:
return True
return "GARLIC" in call["data"]["name"] or "GARLIC" in call["data"]["value"]
if call["what"] == "maybe_unserialize":
# One of our payloads is a serialized string. We catch only attempts to unserialize
# this string to decrease the amount of false positives
# (such as e.g. maybe_unserialize("s:11:\"<GARLIC...>\"");)
if (
isinstance(call["data"], str)
and call["data"].startswith("O:21:")
and "GARLICNonexistentClass" in call["data"]
):
return True
else:
return False
if call["what"] == "get_users" and call["data"] == {
"role": "administrator",
"orderby": "user_registered",
"order": "ASC",
"fields": ["user_registered"],
"number": 1,
}: # woocommerce
return False
if call["what"] == "get_users" and in_admin_or_profile:
# There is nothing interesting that get_users() is called on a page or endpoint
# with admin privileges
return False
if call["what"] == "query":
if not call["data"]:
return False
query = call["data"].lower().strip()
if query == "delete from wp_options where option_name = 'jetpack_secrets'":
return False
# Looked like it's mostly false positives. Feel free to investigate them more.
if query.startswith("delete from wp_usermeta where umeta_id in"):
return False
if query.startswith("delete from wp_wc_admin_note_actions"):
return False
if query.startswith("delete from `wp_woocommerce_sessions`"):
return False
# Already covered by wp_delete_option
if query.startswith("delete from `wp_options` where `option_name` = "):
return False
return query.startswith("truncate ") or query.startswith("delete ")
return True
def is_header_interesting(
header: str,
fuzzer_output_path: str,
file_or_action: str,
intercepted_variables_info: List[str],
):
header = header.lower()
if (
header.startswith("content-disposition: attachment;")
and header.endswith(".csv")
and "woocommerce_admin_download_report_csv" in repr(intercepted_variables_info)
):
return False
if filtering_custom:
if filtering_custom.filter_header(header, fuzzer_output_path, file_or_action):
return False
if header.startswith("http/1."):
return False
if header.startswith("pragma: no-cache"):
return False
if header.split(":")[0] not in [
"x-powered-by",
"set-cookie",
"location",
"x-redirect-by",
"x-pingback",
"content-type",
"expires",
"link",
"cache-control",
"x-frame-options",
"referrer-policy",
]:
# Let's see what we have
return True
if (
header.startswith("location")
and not header.startswith("location: https://127.0.0.1:8001/")
and not header.startswith("location: http://127.0.0.1:8001/")
and not header.startswith("location: https://:8001/")
and not header.startswith("location: http://:8001/")
and not header.startswith("location: ://:8001/")
and not (header.startswith("location: /") and not header.startswith("location: //"))
and not header.startswith("location: https://elementor.com/pro/")
and not header.startswith("location: https://jetpack.wordpress.com/")
and not header.startswith("location: ?")
and "garlic" in header
):
return True
return False
def filter_false_positives(output: str, endpoint: str, fuzzer_output_path: str) -> str:
SHORT_STRING = "(.|\n){1,256}?"
LONG_STRING = "(.|\n){1,1024}?"
output = re.sub(
r"Stack trace: #0 "
+ SHORT_STRING
+ " #1 "
+ SHORT_STRING
+ " #2 "
+ SHORT_STRING
+ "#3 "
+ SHORT_STRING
+ "#4 "
+ SHORT_STRING
+ "#5 ",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"Stack trace: #0 "
+ SHORT_STRING
+ " #1 "
+ SHORT_STRING
+ " #2 "
+ SHORT_STRING
+ "#3 "
+ SHORT_STRING
+ "#4 ",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"__FILE_EXISTS_OF_GARLIC_DETECTED__/var/www/html/wp-content/uploads/woocommerce_uploads/reports/"
+ SHORT_STRING
+ ".csv.headers",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"__FILE_EXISTS_OF_GARLIC_DETECTED__/var/www/html/wp-content/uploads/woocommerce_uploads/reports/"
+ SHORT_STRING
+ ".csv",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"Stack trace: #0 " + SHORT_STRING + " #1 " + SHORT_STRING + " #2 " + SHORT_STRING + "#3 ",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"Stack trace: #0 " + SHORT_STRING + " #1 " + SHORT_STRING + " #2 ",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"Notice: Undefined index:.{0,5}?GARLIC.{0,1024}?on line",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"unlink\(/var/www/html/wp-content/uploads/woocommerce_uploads/reports/[a-zA-Z0-9._@-]*.csv.headers\)",
"--false-positive--",
output,
flags=re.M,
)
# Not the kind of parse rrors we are interested in
output = re.sub(
r"<value><string>parse error. not well formed</string>",
"--false-positive--",
output,
flags=re.M,
)
# Correctly escaped
output = re.sub(
r"The username <strong>" + SHORT_STRING + "</strong> is not registered on this site.",
"--false-positive--",
output,
flags=re.M,
)
# This one needs correct hash
output = re.sub(
r"Error at offset [0-9]* of [0-9]* bytes in /var/www/html/wp-includes/blocks/legacy-widget.php on line 52",
"--false-positive--",
output,
flags=re.M,
)
# Each SQL crash is repeated twice, once in the error logs and the second time in the HTML
# output. Let's nuke one of these crashes
output = re.sub(
"SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near "
+ SHORT_STRING
+ " at line [0-9]*.<br /><code>[^<]*?</code>",
"--duplicate-sql-error--",
output,
flags=re.M,
)
output = re.sub(
r'Fatal error: Uncaught InvalidArgumentException: Invalid action status: "'
+ SHORT_STRING
+ '". in /var/www/html/wp-content',
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
"Fatal error: Uncaught Exception: DateTime::__construct\\(\\): Failed to parse time string "
+ SHORT_STRING
+ " at position",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
"doesn't exist for query " + SHORT_STRING + "made by",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
"Warning: Illegal string offset '" + SHORT_STRING + "' in /var/www/html/wp-content",
"--false-positive--",
output,
flags=re.M,
)
# Elementor, looks correctly escaped
output = re.sub(
r"var ecs_ajax_params = {.{0,3000}?</script>",
"--false-positive--",
output,
flags=re.M,
)
output = output.replace(
"Fatal error: Uncaught Error: Call to undefined function "
"get_plugin_data() in /var/www/html/wp-content/plugins/",
"--false-positive--",
)
output = output.replace(
"made by include('wp-load.php'), require_once('wp-config.php'), "
"require_once('wp-settings.php'), do_action('init')",
"--false-positive--",
)
output = output.replace(
"confirm your email by clicking on the link we sent to [email protected]. " "This makes sure youre not a bot",
"--false-positive--",
)
output = re.sub(
r"__GARLIC_NONCE__.{0,300}?__ENDNONCEGARLIC__",
"",
output,
flags=re.M,
)
output = re.sub(
"require_once\\(/var/www/html/wp-content/plugins/" + SHORT_STRING + ".php\\): failed to open stream:",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r"WordPress database error Not unique table/alias: 'trel' " r"for query.{0,3000}? made by",
"--false-positive--",
output,
flags=re.M,
)
if "/wc-logs/" in endpoint:
output = re.sub(
r" WC_Legacy_API->maybe_log_rest_api_request\(" + SHORT_STRING + r"\)",
"--false-positive--",
output,
flags=re.M,
)
output = re.sub(
r" INFO Version: [0-9]*, Route: " + SHORT_STRING + "User agent: " + SHORT_STRING + "$",
"--false-positive--",
output,
flags=re.M,
)
# Unexploitable
output = re.sub(
"You have an error in your SQL syntax; check the manual that corresponds to your MySQL "
+ "server version for the right syntax to use near"
+ LONG_STRING
+ "wp_posts"
+ LONG_STRING
+ "wp_posts"
+ LONG_STRING
+ "WP_Query->get_posts",
"--false-positive--",
output,
flags=re.M,
)
if filtering_custom:
output = filtering_custom.filter_false_positives(output, endpoint, fuzzer_output_path)
return output