pdfalyzer 1.16.7__py3-none-any.whl → 1.16.8__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.

@@ -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
- strings:
8
+ strings:
9
9
  $this = "this\\s*" xor
10
10
  $require = "require" xor
11
- $const = "const" xor
11
+ $const = "const" xor
12
12
  $eval = "eval" xor
13
- condition:
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
- // strings:
25
+ // strings:
26
26
  // $front_slashes = /\/.*?\//
27
- // condition:
27
+ // condition:
28
28
  // $front_slashes
29
29
  // }