pdfalyzer 1.16.7__py3-none-any.whl → 1.16.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pdfalyzer might be problematic. Click here for more details.
- CHANGELOG.md +8 -0
- pdfalyzer/yara_rules/PDF.yara +475 -422
- pdfalyzer/yara_rules/PDF_binary_stream.yara +5 -5
- pdfalyzer/yara_rules/pdf_malware.yara +1884 -1808
- {pdfalyzer-1.16.7.dist-info → pdfalyzer-1.16.9.dist-info}/METADATA +6 -6
- {pdfalyzer-1.16.7.dist-info → pdfalyzer-1.16.9.dist-info}/RECORD +9 -9
- {pdfalyzer-1.16.7.dist-info → pdfalyzer-1.16.9.dist-info}/LICENSE +0 -0
- {pdfalyzer-1.16.7.dist-info → pdfalyzer-1.16.9.dist-info}/WHEEL +0 -0
- {pdfalyzer-1.16.7.dist-info → pdfalyzer-1.16.9.dist-info}/entry_points.txt +0 -0
|
@@ -5,12 +5,12 @@ rule PDF_with_XORed_JS_keywords {
|
|
|
5
5
|
description = "Look for Javascript keywords with XOR"
|
|
6
6
|
created_date = "2022-10-01"
|
|
7
7
|
updated_date = "2022-10-01"
|
|
8
|
-
|
|
8
|
+
strings:
|
|
9
9
|
$this = "this\\s*" xor
|
|
10
10
|
$require = "require" xor
|
|
11
|
-
|
|
11
|
+
$const = "const" xor
|
|
12
12
|
$eval = "eval" xor
|
|
13
|
-
|
|
13
|
+
condition:
|
|
14
14
|
$this or $require or $const or $eval
|
|
15
15
|
}
|
|
16
16
|
|
|
@@ -22,8 +22,8 @@ rule PDF_with_XORed_JS_keywords {
|
|
|
22
22
|
// description = "Find patterns that look like an embedded regex"
|
|
23
23
|
// created_date = "2022-10-01"
|
|
24
24
|
// updated_date = "2022-10-01"
|
|
25
|
-
//
|
|
25
|
+
// strings:
|
|
26
26
|
// $front_slashes = /\/.*?\//
|
|
27
|
-
//
|
|
27
|
+
// condition:
|
|
28
28
|
// $front_slashes
|
|
29
29
|
// }
|