boreal-python 1.2.0__tar.gz → 1.3.0__tar.gz
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.
- {boreal_python-1.2.0 → boreal_python-1.3.0}/Cargo.lock +99 -88
- {boreal_python-1.2.0 → boreal_python-1.3.0}/PKG-INFO +1 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/Cargo.toml +5 -5
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/bytes_pool.rs +71 -50
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/error.rs +11 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/expression.rs +245 -148
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/mod.rs +15 -9
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/module.rs +52 -43
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/params.rs +3 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/rule.rs +145 -40
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/tests.rs +18 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/variable.rs +9 -82
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/entrypoint.rs +2 -2
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/mod.rs +50 -25
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/analysis.rs +0 -22
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/literals.rs +7 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/mod.rs +36 -32
- boreal_python-1.3.0/boreal/src/matcher/validator/simple.rs +1125 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/validator.rs +77 -153
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/dotnet.rs +1 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/elf.rs +116 -108
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/macho.rs +163 -151
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/version_info.rs +1 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe.rs +214 -172
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/regex/mod.rs +2 -2
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/ac_scan.rs +106 -60
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/mod.rs +140 -120
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/linux.rs +2 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/macos.rs +2 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/windows.rs +2 -1
- boreal_python-1.3.0/boreal/src/scanner/process.rs +14 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/statistics.rs +6 -6
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/wire.rs +1 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/Cargo.toml +2 -2
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/lib.rs +9 -7
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/rule.rs +7 -2
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/rule_match.rs +6 -1
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/scanner.rs +58 -43
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_scanner.py +72 -4
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/uv.lock +208 -138
- {boreal_python-1.2.0 → boreal_python-1.3.0}/pyproject.toml +1 -1
- boreal_python-1.2.0/boreal/src/matcher/validator/simple.rs +0 -536
- boreal_python-1.2.0/boreal/src/scanner/process.rs +0 -8
- {boreal_python-1.2.0 → boreal_python-1.3.0}/Cargo.toml +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/README.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/LICENSE-APACHE +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/LICENSE-MIT +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/README.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/atoms.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/bitmaps.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/builder.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/compiler/external_symbol.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/error.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/module.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/read_integer.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/evaluator/variable.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/lib.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/base64.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/only_literals.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/raw.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/validator/dfa.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/matcher/widener.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/memory.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/console.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/cuckoo.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/dex.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/hash.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/magic.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/math.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/mod.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/debug.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/ord.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures/asn1.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures/verify.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/signatures.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/pe/utils.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/string.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/module/time.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/regex/hir.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/regex/visitor.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/error.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/params.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys/default.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/scanner/process/sys.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/test_helpers.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal/src/timeout.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/Cargo.toml +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/LICENSE-APACHE +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/LICENSE-MIT +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/README.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/error.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/boolean_expression.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/common.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/for_expression.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/identifier.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/mod.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/primary_expression.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/read_integer.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/expression/string_expression.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/file.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/hex_string.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/lib.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/nom_recipes.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/number.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/regex.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/rule.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/string.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/test_helpers.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-parser/src/types.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/README.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/boreal.pyi +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/README.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/api.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/griffe_customization.py +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/docs/yara_compatibility_mode.md +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/mkdocs.yml +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/scripts/test-parallel.sh +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/scripts/test.sh +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/module.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/rule_string.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/string_match_instance.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/src/string_matches.rs +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/conftest.py +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_api.py +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_compile.py +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/test_types.py +0 -0
- {boreal_python-1.2.0 → boreal_python-1.3.0}/boreal-py/tests/utils.py +0 -0
|
@@ -4,9 +4,9 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "aho-corasick"
|
|
7
|
-
version = "1.1.
|
|
7
|
+
version = "1.1.5"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"memchr",
|
|
12
12
|
]
|
|
@@ -90,9 +90,9 @@ checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
|
|
|
90
90
|
|
|
91
91
|
[[package]]
|
|
92
92
|
name = "base64"
|
|
93
|
-
version = "0.
|
|
93
|
+
version = "0.23.1"
|
|
94
94
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
-
checksum = "
|
|
95
|
+
checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5"
|
|
96
96
|
|
|
97
97
|
[[package]]
|
|
98
98
|
name = "base64ct"
|
|
@@ -115,14 +115,14 @@ dependencies = [
|
|
|
115
115
|
"regex",
|
|
116
116
|
"rustc-hash",
|
|
117
117
|
"shlex 1.3.0",
|
|
118
|
-
"syn",
|
|
118
|
+
"syn 2.0.119",
|
|
119
119
|
]
|
|
120
120
|
|
|
121
121
|
[[package]]
|
|
122
122
|
name = "bitflags"
|
|
123
|
-
version = "2.13.
|
|
123
|
+
version = "2.13.2"
|
|
124
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
-
checksum = "
|
|
125
|
+
checksum = "3ded4057c258ba199e2d26386d3af3780957ecaee6c4ef4041c6b4b8b97c0b06"
|
|
126
126
|
|
|
127
127
|
[[package]]
|
|
128
128
|
name = "block-buffer"
|
|
@@ -135,7 +135,7 @@ dependencies = [
|
|
|
135
135
|
|
|
136
136
|
[[package]]
|
|
137
137
|
name = "boreal"
|
|
138
|
-
version = "1.
|
|
138
|
+
version = "1.3.0"
|
|
139
139
|
dependencies = [
|
|
140
140
|
"aho-corasick",
|
|
141
141
|
"base64",
|
|
@@ -171,7 +171,7 @@ dependencies = [
|
|
|
171
171
|
|
|
172
172
|
[[package]]
|
|
173
173
|
name = "boreal-cli"
|
|
174
|
-
version = "1.
|
|
174
|
+
version = "1.3.0"
|
|
175
175
|
dependencies = [
|
|
176
176
|
"assert_cmd",
|
|
177
177
|
"boreal",
|
|
@@ -194,7 +194,7 @@ dependencies = [
|
|
|
194
194
|
|
|
195
195
|
[[package]]
|
|
196
196
|
name = "boreal-py"
|
|
197
|
-
version = "1.
|
|
197
|
+
version = "1.3.0"
|
|
198
198
|
dependencies = [
|
|
199
199
|
"boreal",
|
|
200
200
|
"parking_lot",
|
|
@@ -211,9 +211,9 @@ dependencies = [
|
|
|
211
211
|
|
|
212
212
|
[[package]]
|
|
213
213
|
name = "borsh"
|
|
214
|
-
version = "1.
|
|
214
|
+
version = "1.8.1"
|
|
215
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "
|
|
216
|
+
checksum = "553c5d846a6ba5150c65e3b1b8ec073bcf1abc20f9b7220de384a4443ea4e20a"
|
|
217
217
|
dependencies = [
|
|
218
218
|
"bytes",
|
|
219
219
|
"cfg_aliases",
|
|
@@ -221,9 +221,9 @@ dependencies = [
|
|
|
221
221
|
|
|
222
222
|
[[package]]
|
|
223
223
|
name = "bstr"
|
|
224
|
-
version = "1.13.
|
|
224
|
+
version = "1.13.1"
|
|
225
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
-
checksum = "
|
|
226
|
+
checksum = "6bb31b46c14244e20ee9984b11bf5c992b91fb6939fea616e3512c8baecdbe5f"
|
|
227
227
|
dependencies = [
|
|
228
228
|
"memchr",
|
|
229
229
|
"regex-automata",
|
|
@@ -238,9 +238,9 @@ checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
|
238
238
|
|
|
239
239
|
[[package]]
|
|
240
240
|
name = "cc"
|
|
241
|
-
version = "1.
|
|
241
|
+
version = "1.4.5"
|
|
242
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "
|
|
243
|
+
checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80"
|
|
244
244
|
dependencies = [
|
|
245
245
|
"find-msvc-tools",
|
|
246
246
|
"shlex 2.0.1",
|
|
@@ -263,15 +263,15 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
263
263
|
|
|
264
264
|
[[package]]
|
|
265
265
|
name = "cfg_aliases"
|
|
266
|
-
version = "0.2.
|
|
266
|
+
version = "0.2.2"
|
|
267
267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
-
checksum = "
|
|
268
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
269
269
|
|
|
270
270
|
[[package]]
|
|
271
271
|
name = "clang-sys"
|
|
272
|
-
version = "1.
|
|
272
|
+
version = "1.9.1"
|
|
273
273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
-
checksum = "
|
|
274
|
+
checksum = "157a8ba7b480713b56f4c09fd13fc3e0a22a5dfab8097ba61cbc5feef950788a"
|
|
275
275
|
dependencies = [
|
|
276
276
|
"glob",
|
|
277
277
|
"libc",
|
|
@@ -280,18 +280,18 @@ dependencies = [
|
|
|
280
280
|
|
|
281
281
|
[[package]]
|
|
282
282
|
name = "clap"
|
|
283
|
-
version = "4.6.
|
|
283
|
+
version = "4.6.6"
|
|
284
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
285
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
286
286
|
dependencies = [
|
|
287
287
|
"clap_builder",
|
|
288
288
|
]
|
|
289
289
|
|
|
290
290
|
[[package]]
|
|
291
291
|
name = "clap_builder"
|
|
292
|
-
version = "4.6.
|
|
292
|
+
version = "4.6.6"
|
|
293
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "
|
|
294
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
295
295
|
dependencies = [
|
|
296
296
|
"anstream",
|
|
297
297
|
"anstyle",
|
|
@@ -339,27 +339,27 @@ dependencies = [
|
|
|
339
339
|
|
|
340
340
|
[[package]]
|
|
341
341
|
name = "crc32fast"
|
|
342
|
-
version = "1.5.
|
|
342
|
+
version = "1.5.2"
|
|
343
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
344
|
+
checksum = "01a7799fd6b852db0e61728dde9a204c423b44d689dbd432522543614b490e78"
|
|
345
345
|
dependencies = [
|
|
346
346
|
"cfg-if",
|
|
347
347
|
]
|
|
348
348
|
|
|
349
349
|
[[package]]
|
|
350
350
|
name = "crossbeam-channel"
|
|
351
|
-
version = "0.5.
|
|
351
|
+
version = "0.5.17"
|
|
352
352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
-
checksum = "
|
|
353
|
+
checksum = "98b0cc327b5bc766e7fda9c9260cc0fa81b43a8e240440422dff70788e3f9ef1"
|
|
354
354
|
dependencies = [
|
|
355
355
|
"crossbeam-utils",
|
|
356
356
|
]
|
|
357
357
|
|
|
358
358
|
[[package]]
|
|
359
359
|
name = "crossbeam-utils"
|
|
360
|
-
version = "0.8.
|
|
360
|
+
version = "0.8.23"
|
|
361
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
362
|
-
checksum = "
|
|
362
|
+
checksum = "a31eee39dddec8330830986fcd7625edb5a24ec90ea038215273bbc3adb08ac6"
|
|
363
363
|
|
|
364
364
|
[[package]]
|
|
365
365
|
name = "crypto-bigint"
|
|
@@ -403,7 +403,7 @@ checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
|
|
|
403
403
|
dependencies = [
|
|
404
404
|
"proc-macro2",
|
|
405
405
|
"quote",
|
|
406
|
-
"syn",
|
|
406
|
+
"syn 2.0.119",
|
|
407
407
|
]
|
|
408
408
|
|
|
409
409
|
[[package]]
|
|
@@ -455,9 +455,9 @@ dependencies = [
|
|
|
455
455
|
|
|
456
456
|
[[package]]
|
|
457
457
|
name = "either"
|
|
458
|
-
version = "1.
|
|
458
|
+
version = "1.18.0"
|
|
459
459
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "
|
|
460
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
461
461
|
|
|
462
462
|
[[package]]
|
|
463
463
|
name = "elliptic-curve"
|
|
@@ -491,9 +491,9 @@ dependencies = [
|
|
|
491
491
|
|
|
492
492
|
[[package]]
|
|
493
493
|
name = "fastrand"
|
|
494
|
-
version = "2.
|
|
494
|
+
version = "2.5.0"
|
|
495
495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
-
checksum = "
|
|
496
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
497
497
|
|
|
498
498
|
[[package]]
|
|
499
499
|
name = "ff"
|
|
@@ -507,9 +507,9 @@ dependencies = [
|
|
|
507
507
|
|
|
508
508
|
[[package]]
|
|
509
509
|
name = "find-msvc-tools"
|
|
510
|
-
version = "0.1.
|
|
510
|
+
version = "0.1.12"
|
|
511
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
-
checksum = "
|
|
512
|
+
checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d"
|
|
513
513
|
|
|
514
514
|
[[package]]
|
|
515
515
|
name = "fs_extra"
|
|
@@ -530,9 +530,9 @@ dependencies = [
|
|
|
530
530
|
|
|
531
531
|
[[package]]
|
|
532
532
|
name = "glob"
|
|
533
|
-
version = "0.3.
|
|
533
|
+
version = "0.3.4"
|
|
534
534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
535
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
536
536
|
|
|
537
537
|
[[package]]
|
|
538
538
|
name = "group"
|
|
@@ -598,9 +598,9 @@ dependencies = [
|
|
|
598
598
|
|
|
599
599
|
[[package]]
|
|
600
600
|
name = "libc"
|
|
601
|
-
version = "0.2.
|
|
601
|
+
version = "0.2.189"
|
|
602
602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
603
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
604
604
|
|
|
605
605
|
[[package]]
|
|
606
606
|
name = "libloading"
|
|
@@ -635,9 +635,9 @@ dependencies = [
|
|
|
635
635
|
|
|
636
636
|
[[package]]
|
|
637
637
|
name = "mach2"
|
|
638
|
-
version = "0.
|
|
638
|
+
version = "0.7.0"
|
|
639
639
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
-
checksum = "
|
|
640
|
+
checksum = "b0d28e293f2b8c9d2b2d1c0193bd3c1cbdc0d2cf396888dc01162f7cf9d6c3f3"
|
|
641
641
|
|
|
642
642
|
[[package]]
|
|
643
643
|
name = "magic"
|
|
@@ -727,9 +727,9 @@ dependencies = [
|
|
|
727
727
|
|
|
728
728
|
[[package]]
|
|
729
729
|
name = "num-integer"
|
|
730
|
-
version = "0.1.
|
|
730
|
+
version = "0.1.47"
|
|
731
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
-
checksum = "
|
|
732
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
733
733
|
dependencies = [
|
|
734
734
|
"num-traits",
|
|
735
735
|
]
|
|
@@ -756,9 +756,9 @@ dependencies = [
|
|
|
756
756
|
|
|
757
757
|
[[package]]
|
|
758
758
|
name = "object"
|
|
759
|
-
version = "0.
|
|
759
|
+
version = "0.40.0"
|
|
760
760
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
-
checksum = "
|
|
761
|
+
checksum = "dd229a0361b9d0d4396176e02d65897f487eebeab7caa6d443855ee152ca0b9c"
|
|
762
762
|
dependencies = [
|
|
763
763
|
"memchr",
|
|
764
764
|
]
|
|
@@ -854,9 +854,9 @@ dependencies = [
|
|
|
854
854
|
|
|
855
855
|
[[package]]
|
|
856
856
|
name = "portable-atomic"
|
|
857
|
-
version = "1.
|
|
857
|
+
version = "1.15.0"
|
|
858
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
-
checksum = "
|
|
859
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
860
860
|
|
|
861
861
|
[[package]]
|
|
862
862
|
name = "ppv-lite86"
|
|
@@ -906,18 +906,18 @@ dependencies = [
|
|
|
906
906
|
|
|
907
907
|
[[package]]
|
|
908
908
|
name = "proc-macro2"
|
|
909
|
-
version = "1.0.
|
|
909
|
+
version = "1.0.107"
|
|
910
910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
911
|
-
checksum = "
|
|
911
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
912
912
|
dependencies = [
|
|
913
913
|
"unicode-ident",
|
|
914
914
|
]
|
|
915
915
|
|
|
916
916
|
[[package]]
|
|
917
917
|
name = "pyo3"
|
|
918
|
-
version = "0.29.
|
|
918
|
+
version = "0.29.2"
|
|
919
919
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
-
checksum = "
|
|
920
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
921
921
|
dependencies = [
|
|
922
922
|
"libc",
|
|
923
923
|
"once_cell",
|
|
@@ -929,18 +929,18 @@ dependencies = [
|
|
|
929
929
|
|
|
930
930
|
[[package]]
|
|
931
931
|
name = "pyo3-build-config"
|
|
932
|
-
version = "0.29.
|
|
932
|
+
version = "0.29.2"
|
|
933
933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
-
checksum = "
|
|
934
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
935
935
|
dependencies = [
|
|
936
936
|
"target-lexicon",
|
|
937
937
|
]
|
|
938
938
|
|
|
939
939
|
[[package]]
|
|
940
940
|
name = "pyo3-ffi"
|
|
941
|
-
version = "0.29.
|
|
941
|
+
version = "0.29.2"
|
|
942
942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
-
checksum = "
|
|
943
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
944
944
|
dependencies = [
|
|
945
945
|
"libc",
|
|
946
946
|
"pyo3-build-config",
|
|
@@ -948,42 +948,42 @@ dependencies = [
|
|
|
948
948
|
|
|
949
949
|
[[package]]
|
|
950
950
|
name = "pyo3-macros"
|
|
951
|
-
version = "0.29.
|
|
951
|
+
version = "0.29.2"
|
|
952
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
-
checksum = "
|
|
953
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
954
954
|
dependencies = [
|
|
955
955
|
"proc-macro2",
|
|
956
956
|
"pyo3-macros-backend",
|
|
957
957
|
"quote",
|
|
958
|
-
"syn",
|
|
958
|
+
"syn 2.0.119",
|
|
959
959
|
]
|
|
960
960
|
|
|
961
961
|
[[package]]
|
|
962
962
|
name = "pyo3-macros-backend"
|
|
963
|
-
version = "0.29.
|
|
963
|
+
version = "0.29.2"
|
|
964
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
-
checksum = "
|
|
965
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
966
966
|
dependencies = [
|
|
967
967
|
"heck",
|
|
968
968
|
"proc-macro2",
|
|
969
969
|
"quote",
|
|
970
|
-
"syn",
|
|
970
|
+
"syn 2.0.119",
|
|
971
971
|
]
|
|
972
972
|
|
|
973
973
|
[[package]]
|
|
974
974
|
name = "quote"
|
|
975
|
-
version = "1.0.
|
|
975
|
+
version = "1.0.47"
|
|
976
976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
-
checksum = "
|
|
977
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
978
978
|
dependencies = [
|
|
979
979
|
"proc-macro2",
|
|
980
980
|
]
|
|
981
981
|
|
|
982
982
|
[[package]]
|
|
983
983
|
name = "rand"
|
|
984
|
-
version = "0.8.
|
|
984
|
+
version = "0.8.8"
|
|
985
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
-
checksum = "
|
|
986
|
+
checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c"
|
|
987
987
|
dependencies = [
|
|
988
988
|
"rand_chacha",
|
|
989
989
|
"rand_core",
|
|
@@ -1028,9 +1028,9 @@ dependencies = [
|
|
|
1028
1028
|
|
|
1029
1029
|
[[package]]
|
|
1030
1030
|
name = "regex-automata"
|
|
1031
|
-
version = "0.4.
|
|
1031
|
+
version = "0.4.18"
|
|
1032
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1033
|
-
checksum = "
|
|
1033
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1034
1034
|
dependencies = [
|
|
1035
1035
|
"aho-corasick",
|
|
1036
1036
|
"memchr",
|
|
@@ -1123,9 +1123,9 @@ dependencies = [
|
|
|
1123
1123
|
|
|
1124
1124
|
[[package]]
|
|
1125
1125
|
name = "serde"
|
|
1126
|
-
version = "1.0.
|
|
1126
|
+
version = "1.0.229"
|
|
1127
1127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
-
checksum = "
|
|
1128
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1129
1129
|
dependencies = [
|
|
1130
1130
|
"serde_core",
|
|
1131
1131
|
"serde_derive",
|
|
@@ -1133,29 +1133,29 @@ dependencies = [
|
|
|
1133
1133
|
|
|
1134
1134
|
[[package]]
|
|
1135
1135
|
name = "serde_core"
|
|
1136
|
-
version = "1.0.
|
|
1136
|
+
version = "1.0.229"
|
|
1137
1137
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
1138
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1139
1139
|
dependencies = [
|
|
1140
1140
|
"serde_derive",
|
|
1141
1141
|
]
|
|
1142
1142
|
|
|
1143
1143
|
[[package]]
|
|
1144
1144
|
name = "serde_derive"
|
|
1145
|
-
version = "1.0.
|
|
1145
|
+
version = "1.0.229"
|
|
1146
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "
|
|
1147
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1148
1148
|
dependencies = [
|
|
1149
1149
|
"proc-macro2",
|
|
1150
1150
|
"quote",
|
|
1151
|
-
"syn",
|
|
1151
|
+
"syn 3.0.5",
|
|
1152
1152
|
]
|
|
1153
1153
|
|
|
1154
1154
|
[[package]]
|
|
1155
1155
|
name = "serde_json"
|
|
1156
|
-
version = "1.0.
|
|
1156
|
+
version = "1.0.151"
|
|
1157
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
-
checksum = "
|
|
1158
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
1159
1159
|
dependencies = [
|
|
1160
1160
|
"itoa",
|
|
1161
1161
|
"memchr",
|
|
@@ -1166,9 +1166,9 @@ dependencies = [
|
|
|
1166
1166
|
|
|
1167
1167
|
[[package]]
|
|
1168
1168
|
name = "sha1"
|
|
1169
|
-
version = "0.10.
|
|
1169
|
+
version = "0.10.7"
|
|
1170
1170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
-
checksum = "
|
|
1171
|
+
checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
|
|
1172
1172
|
dependencies = [
|
|
1173
1173
|
"cfg-if",
|
|
1174
1174
|
"cpufeatures",
|
|
@@ -1210,9 +1210,9 @@ dependencies = [
|
|
|
1210
1210
|
|
|
1211
1211
|
[[package]]
|
|
1212
1212
|
name = "smallvec"
|
|
1213
|
-
version = "1.
|
|
1213
|
+
version = "1.16.1"
|
|
1214
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
-
checksum = "
|
|
1215
|
+
checksum = "ba467056f1b547ed52077911161fc86985becbc60e8e1857c8a144dab0def891"
|
|
1216
1216
|
|
|
1217
1217
|
[[package]]
|
|
1218
1218
|
name = "spin"
|
|
@@ -1253,6 +1253,17 @@ dependencies = [
|
|
|
1253
1253
|
"unicode-ident",
|
|
1254
1254
|
]
|
|
1255
1255
|
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "syn"
|
|
1258
|
+
version = "3.0.5"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "12df2e0110f65b775f769bb17ef989067a1d931b2eb822bd4346631eeada89f9"
|
|
1261
|
+
dependencies = [
|
|
1262
|
+
"proc-macro2",
|
|
1263
|
+
"quote",
|
|
1264
|
+
"unicode-ident",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1256
1267
|
[[package]]
|
|
1257
1268
|
name = "target-lexicon"
|
|
1258
1269
|
version = "0.13.5"
|
|
@@ -1303,7 +1314,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
1303
1314
|
dependencies = [
|
|
1304
1315
|
"proc-macro2",
|
|
1305
1316
|
"quote",
|
|
1306
|
-
"syn",
|
|
1317
|
+
"syn 2.0.119",
|
|
1307
1318
|
]
|
|
1308
1319
|
|
|
1309
1320
|
[[package]]
|
|
@@ -1416,22 +1427,22 @@ dependencies = [
|
|
|
1416
1427
|
|
|
1417
1428
|
[[package]]
|
|
1418
1429
|
name = "zerocopy"
|
|
1419
|
-
version = "0.8.
|
|
1430
|
+
version = "0.8.57"
|
|
1420
1431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1421
|
-
checksum = "
|
|
1432
|
+
checksum = "d35102a9f36d089ccae9e4c6802bc118be4487b80aaffc0ab4e0cf5ce92d2873"
|
|
1422
1433
|
dependencies = [
|
|
1423
1434
|
"zerocopy-derive",
|
|
1424
1435
|
]
|
|
1425
1436
|
|
|
1426
1437
|
[[package]]
|
|
1427
1438
|
name = "zerocopy-derive"
|
|
1428
|
-
version = "0.8.
|
|
1439
|
+
version = "0.8.57"
|
|
1429
1440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1430
|
-
checksum = "
|
|
1441
|
+
checksum = "146c01f5ab44258da43cf276c74a2763db2ff3969c9c652c3f2de07041d0b2bc"
|
|
1431
1442
|
dependencies = [
|
|
1432
1443
|
"proc-macro2",
|
|
1433
1444
|
"quote",
|
|
1434
|
-
"syn",
|
|
1445
|
+
"syn 2.0.119",
|
|
1435
1446
|
]
|
|
1436
1447
|
|
|
1437
1448
|
[[package]]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "boreal"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.3.0"
|
|
4
4
|
description = "A library to evaluate YARA rules, used to scan bytes for textual and binary pattern"
|
|
5
5
|
repository = "https://github.com/vthib/boreal"
|
|
6
6
|
readme = "README.md"
|
|
@@ -79,7 +79,7 @@ sha2 = { version = "0.10", optional = true }
|
|
|
79
79
|
tlsh2 = { version = "1.1", optional = true }
|
|
80
80
|
|
|
81
81
|
# "object" feature
|
|
82
|
-
object = { version = "0.
|
|
82
|
+
object = { version = "0.40", optional = true, default-features = false, features = ["read"] }
|
|
83
83
|
|
|
84
84
|
# "authenticode" feature
|
|
85
85
|
const-oid = { version = "0.9", optional = true, features = ["db"] }
|
|
@@ -102,14 +102,14 @@ magic = { version = "0.16", optional = true }
|
|
|
102
102
|
serde_json = { version = "1.0", optional = true }
|
|
103
103
|
|
|
104
104
|
# "serialize" feature
|
|
105
|
-
borsh = { version = "1.
|
|
105
|
+
borsh = { version = "1.8.0", optional = true }
|
|
106
106
|
|
|
107
107
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
108
108
|
libc = { version = "0.2", optional = true }
|
|
109
109
|
|
|
110
110
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
111
111
|
libc = { version = "0.2", optional = true }
|
|
112
|
-
mach2 = { version = "0.
|
|
112
|
+
mach2 = { version = "0.7", optional = true }
|
|
113
113
|
|
|
114
114
|
[target.'cfg(windows)'.dependencies]
|
|
115
115
|
windows-sys = { version = "0.61", optional = true, features = [
|
|
@@ -125,7 +125,7 @@ windows-sys = { version = "0.61", optional = true, features = [
|
|
|
125
125
|
] }
|
|
126
126
|
|
|
127
127
|
[dev-dependencies]
|
|
128
|
-
base64 = "0.
|
|
128
|
+
base64 = "0.23"
|
|
129
129
|
glob = "0.3.1"
|
|
130
130
|
tempfile.workspace = true
|
|
131
131
|
yara = { version = "0.32", features = ["vendored"] }
|