yara-x 0.11.0__tar.gz → 0.11.1__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.
Potentially problematic release.
This version of yara-x might be problematic. Click here for more details.
- {yara_x-0.11.0 → yara_x-0.11.1}/Cargo.lock +13 -13
- {yara_x-0.11.0 → yara_x-0.11.1}/Cargo.toml +8 -8
- {yara_x-0.11.0 → yara_x-0.11.1}/PKG-INFO +2 -2
- yara_x-0.11.1/lib/src/modules/cuckoo/mod.rs +249 -0
- yara_x-0.11.1/lib/src/modules/cuckoo/schema.rs +166 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/parser.rs +7 -4
- {yara_x-0.11.0 → yara_x-0.11.1}/pyproject.toml +2 -2
- yara_x-0.11.0/lib/src/modules/cuckoo/mod.rs +0 -312
- {yara_x-0.11.0 → yara_x-0.11.1}/README.md +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/Cargo.toml +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/README.md +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/build.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/atoms/mask.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/atoms/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/atoms/quality.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/base64.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/context.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/emit.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/errors.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/ast2ir.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/dfs.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/hex2hir.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/1.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/2.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/3.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/4.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/5.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/6.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/7.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.cse.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.hoisting.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/ir/tests/testdata/8.no-folding.ir +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/report.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/rules.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/1.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/10.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/10.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/100.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/100.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/101.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/101.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/102.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/102.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/103.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/103.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/104.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/104.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/105.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/105.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/106.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/106.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/107.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/107.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/108.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/108.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/109.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/109.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/11.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/11.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/110.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/110.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/111.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/111.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/112.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/112.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/113.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/113.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/114.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/114.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/115.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/115.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/116.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/116.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/117.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/117.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/118.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/118.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/119.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/119.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/12.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/12.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/120.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/120.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/121.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/121.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/122.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/122.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/123.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/123.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/124.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/124.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/125.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/125.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/126.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/126.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/127.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/127.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/128.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/128.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/129.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/129.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/13.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/13.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/131.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/131.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/132.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/132.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/133.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/133.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/134.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/134.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/135.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/135.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/136.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/136.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/137.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/137.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/138.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/138.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/139.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/139.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/14.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/14.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/15.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/15.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/16.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/16.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/17.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/17.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/18.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/18.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/19.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/19.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/2.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/20.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/20.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/21.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/21.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/22.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/22.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/23.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/23.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/24.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/24.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/25.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/25.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/26.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/26.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/28.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/28.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/29.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/29.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/3.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/30.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/30.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/31.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/31.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/32.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/32.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/33.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/33.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/34.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/34.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/35.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/35.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/37.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/37.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/38.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/38.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/39.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/39.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/4.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/40.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/40.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/41.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/41.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/42.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/42.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/43.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/43.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/44.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/44.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/45.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/45.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/46.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/46.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/47.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/47.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/48.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/48.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/49.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/49.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/5.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/50.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/50.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/51.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/51.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/52.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/52.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/53.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/53.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/54.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/54.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/55.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/55.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/56.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/56.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/57.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/57.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/58.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/58.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/59.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/59.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/6.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/6.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/60.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/60.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/61.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/61.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/62.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/62.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/63.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/63.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/64.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/64.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/65.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/65.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/66.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/66.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/67.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/67.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/68.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/68.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/69.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/69.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/7.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/7.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/70.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/70.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/71.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/71.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/72.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/72.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/73.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/73.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/74.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/74.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/75.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/75.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/76.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/76.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/77.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/77.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/78.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/78.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/79.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/79.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/8.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/8.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/80.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/80.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/81.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/81.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/82.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/82.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/83.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/83.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/84.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/84.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/85.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/85.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/86.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/86.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/87.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/87.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/88.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/88.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/89.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/89.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/9.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/9.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/90.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/90.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/91.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/91.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/92.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/92.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/93.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/93.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/94.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/94.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/95.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/95.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/96.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/96.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/97.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/97.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/98.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/98.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/99.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/errors/99.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/1.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/10.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/10.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/11.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/11.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/12.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/12.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/13.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/13.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/14.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/14.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/15.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/15.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/16.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/16.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/17.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/17.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/18.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/18.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/19.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/19.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/2.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/20.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/20.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/21.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/21.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/22.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/22.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/23.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/23.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/24.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/24.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/25.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/25.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/26.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/26.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/27.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/27.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/28.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/28.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/29.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/29.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/3.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/30.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/30.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/31.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/31.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/32.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/32.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/33.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/33.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/34.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/34.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/4.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/5.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/6.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/6.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/7.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/7.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/8.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/8.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/9.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/9.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/tests/testdata/warnings/no_warnings.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/compiler/warnings.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/lib.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/models.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/add_modules.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/console.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/1.json +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/1.yar +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/2.json +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/cuckoo/tests/testdata/2.yar +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/parser.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/tests/testdata/605ebe5b5f4b94e1a73e0ad1162bd542e5cb948d1a4ea5a575a14d6b9d6ee849.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/dotnet/tests/testdata/86a1e48cfc843eabfe1b468ef9358c1068950f849c612ab808225b359db0bb8c.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/elf/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/elf/parser.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/elf/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/hash/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/hash/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/lnk/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/lnk/parser.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/macho/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/macho/parser.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/macho/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/magic/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/magic/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/math.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/modules.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/asn1.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/authenticode.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/rva2off.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/pe/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/console.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/cuckoo.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/dotnet.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/elf.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/hash.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/lnk.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/macho.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/magic.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/math.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/mods.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/pe.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/string.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/test_proto2.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/test_proto3.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/text.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/time.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/yaml.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/protos/yara.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/string.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/test_proto2/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/test_proto2/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/test_proto3/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/tests.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/text.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/modules/time.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/bitmapset.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/compiler.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/fastvm.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/instr.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/fast/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/hir.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/parser.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/compiler.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/instr.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/pikevm.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/re/thompson/tests.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/context.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/matches.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/scanner/tests.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/string_pool.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/symbols/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/tests/testdata/jumps.bin +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/array.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/func.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/map.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/types/structure.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/variables.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/wasm/builder.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/wasm/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/lib/src/wasm/string.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/macros/Cargo.toml +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/error.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/lib.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/module_export.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/module_main.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/macros/src/wasm_export.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/Cargo.toml +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/README.md +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/ascii_tree.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/cst2ast.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/errors.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/ast/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/syntax_kind.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/syntax_stream.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/cst/tests.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/lib.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/arithmetic-ops.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/arithmetic-ops.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/arithmetic-ops.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-4.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-4.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-4.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-4.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-5.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-5.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/basic-error-5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/bitwise-ops.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/comments.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/comments.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/comments.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-4.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-4.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-5.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-5.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-6.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-6.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-6.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/expr-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-4.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-4.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-5.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-5.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/for-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/func-call.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/func-call.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/func-call.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/hex-patterns-error-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-4.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-4.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-5.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-5.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-6.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-6.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta-error-6.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/meta.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/of-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/pattern-mods-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-4.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-4.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-4.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-5.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-5.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-5.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-6.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-6.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-6.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-7.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-7.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/patterns-error-7.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-mods-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-mods-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-mods-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags-error-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/rule-tags.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-1.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-1.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-2.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-2.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-2.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-3.ast +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-3.cst +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/tests/testdata/with-error-3.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/parser/token_stream.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/tokenizer/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/tokenizer/tests.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/parser/src/tokenizer/tokens.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto/Cargo.toml +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto/README.md +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto/build.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto/src/lib.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto/src/yara.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/Cargo.toml +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/README.md +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/build.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/lib.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/mod.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/test.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/testdata/1.in +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/tests/testdata/1.out +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/proto-yaml/src/yaml.proto +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/py/Cargo.toml +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/py/README.md +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/py/build.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/py/src/lib.rs +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/py/tests/test_api.py +0 -0
- {yara_x-0.11.0 → yara_x-0.11.1}/py/yara_x.pyi +0 -0
|
@@ -2981,9 +2981,9 @@ dependencies = [
|
|
|
2981
2981
|
|
|
2982
2982
|
[[package]]
|
|
2983
2983
|
name = "serde"
|
|
2984
|
-
version = "1.0.
|
|
2984
|
+
version = "1.0.215"
|
|
2985
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2986
|
-
checksum = "
|
|
2986
|
+
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
|
|
2987
2987
|
dependencies = [
|
|
2988
2988
|
"serde_derive",
|
|
2989
2989
|
]
|
|
@@ -3001,9 +3001,9 @@ dependencies = [
|
|
|
3001
3001
|
|
|
3002
3002
|
[[package]]
|
|
3003
3003
|
name = "serde_derive"
|
|
3004
|
-
version = "1.0.
|
|
3004
|
+
version = "1.0.215"
|
|
3005
3005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3006
|
-
checksum = "
|
|
3006
|
+
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
|
|
3007
3007
|
dependencies = [
|
|
3008
3008
|
"proc-macro2",
|
|
3009
3009
|
"quote",
|
|
@@ -4358,7 +4358,7 @@ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
|
4358
4358
|
|
|
4359
4359
|
[[package]]
|
|
4360
4360
|
name = "yara-x"
|
|
4361
|
-
version = "0.11.
|
|
4361
|
+
version = "0.11.1"
|
|
4362
4362
|
dependencies = [
|
|
4363
4363
|
"aho-corasick",
|
|
4364
4364
|
"annotate-snippets",
|
|
@@ -4429,7 +4429,7 @@ dependencies = [
|
|
|
4429
4429
|
|
|
4430
4430
|
[[package]]
|
|
4431
4431
|
name = "yara-x-capi"
|
|
4432
|
-
version = "0.11.
|
|
4432
|
+
version = "0.11.1"
|
|
4433
4433
|
dependencies = [
|
|
4434
4434
|
"cbindgen",
|
|
4435
4435
|
"serde_json",
|
|
@@ -4438,7 +4438,7 @@ dependencies = [
|
|
|
4438
4438
|
|
|
4439
4439
|
[[package]]
|
|
4440
4440
|
name = "yara-x-cli"
|
|
4441
|
-
version = "0.11.
|
|
4441
|
+
version = "0.11.1"
|
|
4442
4442
|
dependencies = [
|
|
4443
4443
|
"anyhow",
|
|
4444
4444
|
"ascii_tree",
|
|
@@ -4472,7 +4472,7 @@ dependencies = [
|
|
|
4472
4472
|
|
|
4473
4473
|
[[package]]
|
|
4474
4474
|
name = "yara-x-fmt"
|
|
4475
|
-
version = "0.11.
|
|
4475
|
+
version = "0.11.1"
|
|
4476
4476
|
dependencies = [
|
|
4477
4477
|
"bitmask",
|
|
4478
4478
|
"bstr",
|
|
@@ -4487,7 +4487,7 @@ dependencies = [
|
|
|
4487
4487
|
|
|
4488
4488
|
[[package]]
|
|
4489
4489
|
name = "yara-x-macros"
|
|
4490
|
-
version = "0.11.
|
|
4490
|
+
version = "0.11.1"
|
|
4491
4491
|
dependencies = [
|
|
4492
4492
|
"darling",
|
|
4493
4493
|
"proc-macro2",
|
|
@@ -4497,7 +4497,7 @@ dependencies = [
|
|
|
4497
4497
|
|
|
4498
4498
|
[[package]]
|
|
4499
4499
|
name = "yara-x-parser"
|
|
4500
|
-
version = "0.11.
|
|
4500
|
+
version = "0.11.1"
|
|
4501
4501
|
dependencies = [
|
|
4502
4502
|
"anyhow",
|
|
4503
4503
|
"ascii_tree",
|
|
@@ -4521,7 +4521,7 @@ dependencies = [
|
|
|
4521
4521
|
|
|
4522
4522
|
[[package]]
|
|
4523
4523
|
name = "yara-x-proto"
|
|
4524
|
-
version = "0.11.
|
|
4524
|
+
version = "0.11.1"
|
|
4525
4525
|
dependencies = [
|
|
4526
4526
|
"protobuf",
|
|
4527
4527
|
"protobuf-codegen",
|
|
@@ -4530,7 +4530,7 @@ dependencies = [
|
|
|
4530
4530
|
|
|
4531
4531
|
[[package]]
|
|
4532
4532
|
name = "yara-x-proto-yaml"
|
|
4533
|
-
version = "0.11.
|
|
4533
|
+
version = "0.11.1"
|
|
4534
4534
|
dependencies = [
|
|
4535
4535
|
"chrono",
|
|
4536
4536
|
"globwalk",
|
|
@@ -4545,7 +4545,7 @@ dependencies = [
|
|
|
4545
4545
|
|
|
4546
4546
|
[[package]]
|
|
4547
4547
|
name = "yara-x-py"
|
|
4548
|
-
version = "0.11.
|
|
4548
|
+
version = "0.11.1"
|
|
4549
4549
|
dependencies = [
|
|
4550
4550
|
"protobuf-json-mapping",
|
|
4551
4551
|
"pyo3",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[workspace.package]
|
|
2
|
-
version = "0.11.
|
|
2
|
+
version = "0.11.1"
|
|
3
3
|
authors = ["Victor M. Alvarez <vmalvarez@virustotal.com>"]
|
|
4
4
|
edition = "2021"
|
|
5
5
|
homepage = "https://virustotal.github.io/yara-x"
|
|
@@ -79,8 +79,8 @@ regex-automata = "0.4.7"
|
|
|
79
79
|
roxmltree = "0.20.0"
|
|
80
80
|
rsa = "0.9.6"
|
|
81
81
|
rustc-hash = "2.0.0"
|
|
82
|
-
serde = "
|
|
83
|
-
serde_json = "1.0.
|
|
82
|
+
serde = "1.0.215"
|
|
83
|
+
serde_json = "1.0.133"
|
|
84
84
|
sha1 = "0.10.6"
|
|
85
85
|
sha2 = "0.10.8"
|
|
86
86
|
smallvec = "1.13.2"
|
|
@@ -95,11 +95,11 @@ x509-parser = "0.16.0"
|
|
|
95
95
|
yaml-rust = "0.4.5"
|
|
96
96
|
yansi = "1.0.1"
|
|
97
97
|
yara-x = { path = "lib" }
|
|
98
|
-
yara-x-fmt = { path = "fmt", version = "0.11.
|
|
99
|
-
yara-x-macros = { path = "macros", version = "0.11.
|
|
100
|
-
yara-x-parser = { path = "parser", version = "0.11.
|
|
101
|
-
yara-x-proto = { path = "proto", version = "0.11.
|
|
102
|
-
yara-x-proto-yaml = { path = "proto-yaml", version = "0.11.
|
|
98
|
+
yara-x-fmt = { path = "fmt", version = "0.11.1" }
|
|
99
|
+
yara-x-macros = { path = "macros", version = "0.11.1" }
|
|
100
|
+
yara-x-parser = { path = "parser", version = "0.11.1" }
|
|
101
|
+
yara-x-proto = { path = "proto", version = "0.11.1" }
|
|
102
|
+
yara-x-proto-yaml = { path = "proto-yaml", version = "0.11.1" }
|
|
103
103
|
zip = "2.1.1"
|
|
104
104
|
|
|
105
105
|
# Special profile that builds a release binary with link-time optimization.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: yara-x
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.1
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
6
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
@@ -9,7 +9,7 @@ Summary: Python bindings for YARA-X
|
|
|
9
9
|
Keywords: pattern-matching,cybersecurity,forensics,malware,yara
|
|
10
10
|
Home-Page: https://virustotal.github.io/yara-x
|
|
11
11
|
License: BSD-3-Clause
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
13
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
14
14
|
Project-URL: homepage, https://virustotal.github.io/yara-x
|
|
15
15
|
Project-URL: repository, https://github.com/VirusTotal/yara-x.git
|
|
@@ -0,0 +1,249 @@
|
|
|
1
|
+
#[cfg(feature = "logging")]
|
|
2
|
+
use log::error;
|
|
3
|
+
|
|
4
|
+
use crate::compiler::RegexpId;
|
|
5
|
+
use crate::modules::prelude::*;
|
|
6
|
+
use crate::modules::protos::cuckoo::*;
|
|
7
|
+
|
|
8
|
+
mod schema;
|
|
9
|
+
#[cfg(test)]
|
|
10
|
+
mod tests;
|
|
11
|
+
|
|
12
|
+
use std::cell::RefCell;
|
|
13
|
+
use std::rc::Rc;
|
|
14
|
+
thread_local! {
|
|
15
|
+
static LOCAL_DATA: RefCell<Option<Rc<schema::CuckooJson>>> = const { RefCell::new(None) };
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
fn get_local() -> Option<Rc<schema::CuckooJson>> {
|
|
19
|
+
LOCAL_DATA.with(|data| data.borrow().clone())
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
fn set_local(value: schema::CuckooJson) {
|
|
23
|
+
LOCAL_DATA.with(|data| {
|
|
24
|
+
*data.borrow_mut() = Some(Rc::new(value));
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
#[module_main]
|
|
29
|
+
fn main(_data: &[u8], meta: Option<&[u8]>) -> Cuckoo {
|
|
30
|
+
let parsed =
|
|
31
|
+
serde_json::from_slice::<schema::CuckooJson>(meta.unwrap_or_default());
|
|
32
|
+
|
|
33
|
+
match parsed {
|
|
34
|
+
Ok(parsed) => {
|
|
35
|
+
set_local(parsed);
|
|
36
|
+
}
|
|
37
|
+
#[cfg(feature = "logging")]
|
|
38
|
+
Err(e) => {
|
|
39
|
+
error!("can't parse cuckoo report: {}", e);
|
|
40
|
+
}
|
|
41
|
+
#[cfg(not(feature = "logging"))]
|
|
42
|
+
Err(_) => {}
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
Cuckoo::new()
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
#[module_export(name = "network.dns_lookup")]
|
|
49
|
+
fn network_dns_lookup_r(
|
|
50
|
+
ctx: &ScanContext,
|
|
51
|
+
regexp_id: RegexpId,
|
|
52
|
+
) -> Option<i64> {
|
|
53
|
+
Some(
|
|
54
|
+
get_local()?
|
|
55
|
+
.network
|
|
56
|
+
.domains
|
|
57
|
+
.iter()
|
|
58
|
+
.flatten()
|
|
59
|
+
.filter(|domain| {
|
|
60
|
+
ctx.regexp_matches(regexp_id, domain.domain.as_bytes())
|
|
61
|
+
})
|
|
62
|
+
.count() as _,
|
|
63
|
+
)
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#[module_export(name = "network.http_request")]
|
|
67
|
+
fn network_http_request_r(
|
|
68
|
+
ctx: &ScanContext,
|
|
69
|
+
regexp_id: RegexpId,
|
|
70
|
+
) -> Option<i64> {
|
|
71
|
+
Some(
|
|
72
|
+
get_local()?
|
|
73
|
+
.network
|
|
74
|
+
.http
|
|
75
|
+
.iter()
|
|
76
|
+
.flatten()
|
|
77
|
+
.filter(|http| {
|
|
78
|
+
http.method.is_some() // ~> is request (is not response)
|
|
79
|
+
&& ctx.regexp_matches(regexp_id, http.uri.as_bytes())
|
|
80
|
+
})
|
|
81
|
+
.count() as _,
|
|
82
|
+
)
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#[module_export(name = "network.http_get")]
|
|
86
|
+
fn network_http_get_r(ctx: &ScanContext, regexp_id: RegexpId) -> Option<i64> {
|
|
87
|
+
Some(
|
|
88
|
+
get_local()?
|
|
89
|
+
.network
|
|
90
|
+
.http
|
|
91
|
+
.iter()
|
|
92
|
+
.flatten()
|
|
93
|
+
.filter(|http| {
|
|
94
|
+
http.method
|
|
95
|
+
.as_ref()
|
|
96
|
+
.map(|method| method.eq_ignore_ascii_case("get"))
|
|
97
|
+
.unwrap_or(false)
|
|
98
|
+
&& ctx.regexp_matches(regexp_id, http.uri.as_bytes())
|
|
99
|
+
})
|
|
100
|
+
.count() as _,
|
|
101
|
+
)
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
#[module_export(name = "network.http_post")]
|
|
105
|
+
fn network_http_post_r(ctx: &ScanContext, regexp_id: RegexpId) -> Option<i64> {
|
|
106
|
+
Some(
|
|
107
|
+
get_local()?
|
|
108
|
+
.network
|
|
109
|
+
.http
|
|
110
|
+
.iter()
|
|
111
|
+
.flatten()
|
|
112
|
+
.filter(|http| {
|
|
113
|
+
http.method
|
|
114
|
+
.as_ref()
|
|
115
|
+
.map(|method| method.eq_ignore_ascii_case("post"))
|
|
116
|
+
.unwrap_or(false)
|
|
117
|
+
&& ctx.regexp_matches(regexp_id, http.uri.as_bytes())
|
|
118
|
+
})
|
|
119
|
+
.count() as _,
|
|
120
|
+
)
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
#[module_export(name = "network.http_user_agent")]
|
|
124
|
+
fn network_http_user_agent_r(
|
|
125
|
+
ctx: &ScanContext,
|
|
126
|
+
regexp_id: RegexpId,
|
|
127
|
+
) -> Option<i64> {
|
|
128
|
+
Some(
|
|
129
|
+
get_local()?
|
|
130
|
+
.network
|
|
131
|
+
.http
|
|
132
|
+
.iter()
|
|
133
|
+
.flatten()
|
|
134
|
+
.flat_map(|http| http.user_agent.iter())
|
|
135
|
+
.filter(|user_agent| {
|
|
136
|
+
ctx.regexp_matches(regexp_id, user_agent.as_bytes())
|
|
137
|
+
})
|
|
138
|
+
.count() as _,
|
|
139
|
+
)
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
#[module_export(name = "network.tcp")]
|
|
143
|
+
fn network_tcp_ri(
|
|
144
|
+
ctx: &ScanContext,
|
|
145
|
+
dst_re: RegexpId,
|
|
146
|
+
port: i64,
|
|
147
|
+
) -> Option<i64> {
|
|
148
|
+
Some(
|
|
149
|
+
get_local()?
|
|
150
|
+
.network
|
|
151
|
+
.tcp
|
|
152
|
+
.iter()
|
|
153
|
+
.flatten()
|
|
154
|
+
.filter(|tcp| {
|
|
155
|
+
tcp.dport == port as u64
|
|
156
|
+
&& tcp
|
|
157
|
+
.dst
|
|
158
|
+
.iter()
|
|
159
|
+
.chain(tcp.dst_domain.iter())
|
|
160
|
+
.any(|dst| ctx.regexp_matches(dst_re, dst.as_bytes()))
|
|
161
|
+
})
|
|
162
|
+
.count() as _,
|
|
163
|
+
)
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
#[module_export(name = "network.udp")]
|
|
167
|
+
fn network_udp_ri(
|
|
168
|
+
ctx: &ScanContext,
|
|
169
|
+
dst_re: RegexpId,
|
|
170
|
+
port: i64,
|
|
171
|
+
) -> Option<i64> {
|
|
172
|
+
Some(
|
|
173
|
+
get_local()?
|
|
174
|
+
.network
|
|
175
|
+
.udp
|
|
176
|
+
.iter()
|
|
177
|
+
.flatten()
|
|
178
|
+
.filter(|udp| {
|
|
179
|
+
udp.dport == port as u64
|
|
180
|
+
&& udp
|
|
181
|
+
.dst
|
|
182
|
+
.iter()
|
|
183
|
+
.chain(udp.dst_domain.iter())
|
|
184
|
+
.any(|dst| ctx.regexp_matches(dst_re, dst.as_bytes()))
|
|
185
|
+
})
|
|
186
|
+
.count() as _,
|
|
187
|
+
)
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#[module_export(name = "network.host")]
|
|
191
|
+
fn network_host_r(ctx: &ScanContext, re: RegexpId) -> Option<i64> {
|
|
192
|
+
Some(
|
|
193
|
+
get_local()?
|
|
194
|
+
.network
|
|
195
|
+
.hosts
|
|
196
|
+
.iter()
|
|
197
|
+
.flatten()
|
|
198
|
+
.filter(|host| ctx.regexp_matches(re, host.as_bytes()))
|
|
199
|
+
.count() as _,
|
|
200
|
+
)
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
#[module_export(name = "sync.mutex")]
|
|
204
|
+
fn sync_mutex_r(ctx: &ScanContext, mutex_re: RegexpId) -> Option<i64> {
|
|
205
|
+
Some(
|
|
206
|
+
get_local()?
|
|
207
|
+
.behavior
|
|
208
|
+
.summary
|
|
209
|
+
.mutexes
|
|
210
|
+
.iter()
|
|
211
|
+
.flatten()
|
|
212
|
+
.filter(|mutex| ctx.regexp_matches(mutex_re, mutex.as_bytes()))
|
|
213
|
+
.count() as _,
|
|
214
|
+
)
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
#[module_export(name = "filesystem.file_access")]
|
|
218
|
+
fn filesystem_file_access_r(
|
|
219
|
+
ctx: &ScanContext,
|
|
220
|
+
regexp_id: RegexpId,
|
|
221
|
+
) -> Option<i64> {
|
|
222
|
+
Some(
|
|
223
|
+
get_local()?
|
|
224
|
+
.behavior
|
|
225
|
+
.summary
|
|
226
|
+
.files
|
|
227
|
+
.iter()
|
|
228
|
+
.flatten()
|
|
229
|
+
.filter(|file| ctx.regexp_matches(regexp_id, file.as_bytes()))
|
|
230
|
+
.count() as _,
|
|
231
|
+
)
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
#[module_export(name = "registry.key_access")]
|
|
235
|
+
fn registry_key_access_r(
|
|
236
|
+
ctx: &ScanContext,
|
|
237
|
+
regexp_id: RegexpId,
|
|
238
|
+
) -> Option<i64> {
|
|
239
|
+
Some(
|
|
240
|
+
get_local()?
|
|
241
|
+
.behavior
|
|
242
|
+
.summary
|
|
243
|
+
.keys
|
|
244
|
+
.iter()
|
|
245
|
+
.flatten()
|
|
246
|
+
.filter(|key| ctx.regexp_matches(regexp_id, key.as_bytes()))
|
|
247
|
+
.count() as _,
|
|
248
|
+
)
|
|
249
|
+
}
|
|
@@ -0,0 +1,166 @@
|
|
|
1
|
+
use std::fmt;
|
|
2
|
+
|
|
3
|
+
use serde::de::Error;
|
|
4
|
+
use serde::{de::Visitor, Deserialize, Deserializer};
|
|
5
|
+
|
|
6
|
+
#[derive(serde::Deserialize, Debug)]
|
|
7
|
+
pub(super) struct DomainJson {
|
|
8
|
+
pub domain: String,
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
#[derive(serde::Deserialize, Debug)]
|
|
12
|
+
pub(super) struct HttpJson {
|
|
13
|
+
#[serde(rename = "user-agent")]
|
|
14
|
+
pub user_agent: Option<String>,
|
|
15
|
+
pub method: Option<String>, // string ftw
|
|
16
|
+
pub uri: String,
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
#[derive(serde::Deserialize, Debug)]
|
|
20
|
+
pub(super) struct TcpJson {
|
|
21
|
+
pub dst: Option<String>,
|
|
22
|
+
pub dst_domain: Option<String>,
|
|
23
|
+
pub dport: u64,
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
#[derive(serde::Deserialize, Debug)]
|
|
27
|
+
pub(super) struct UdpJson {
|
|
28
|
+
pub dst: Option<String>,
|
|
29
|
+
pub dst_domain: Option<String>,
|
|
30
|
+
pub dport: u64,
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
#[derive(/* serde::Deserialize, - custom */ Debug)]
|
|
34
|
+
pub(super) struct NetworkJson {
|
|
35
|
+
pub domains: Option<Vec<DomainJson>>,
|
|
36
|
+
pub http: Option<Vec<HttpJson>>,
|
|
37
|
+
pub tcp: Option<Vec<TcpJson>>,
|
|
38
|
+
pub udp: Option<Vec<UdpJson>>,
|
|
39
|
+
pub hosts: Option<Vec<String>>,
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
#[derive(serde::Deserialize, Debug)]
|
|
43
|
+
pub(super) struct SummaryJson {
|
|
44
|
+
pub mutexes: Option<Vec<String>>,
|
|
45
|
+
pub files: Option<Vec<String>>,
|
|
46
|
+
pub keys: Option<Vec<String>>,
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
#[derive(serde::Deserialize, Debug)]
|
|
50
|
+
pub(super) struct BehaviorJson {
|
|
51
|
+
pub summary: SummaryJson,
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#[derive(serde::Deserialize, Debug)]
|
|
55
|
+
pub(super) struct CuckooJson {
|
|
56
|
+
pub network: NetworkJson,
|
|
57
|
+
pub behavior: BehaviorJson,
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
impl<'de> Deserialize<'de> for NetworkJson {
|
|
61
|
+
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
|
|
62
|
+
where
|
|
63
|
+
D: Deserializer<'de>,
|
|
64
|
+
{
|
|
65
|
+
struct MyVisitor;
|
|
66
|
+
|
|
67
|
+
impl<'de> Visitor<'de> for MyVisitor {
|
|
68
|
+
type Value = NetworkJson;
|
|
69
|
+
|
|
70
|
+
fn expecting(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
71
|
+
fmt.write_str("string or object")
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
fn visit_map<A>(self, mut map: A) -> Result<Self::Value, A::Error>
|
|
75
|
+
where
|
|
76
|
+
A: serde::de::MapAccess<'de>,
|
|
77
|
+
{
|
|
78
|
+
// Must not parse `old_domains` before the whole map is
|
|
79
|
+
// searched if there is a `domains` field, then the value for
|
|
80
|
+
// the key `old_domains` should be ignored - specifically, it
|
|
81
|
+
// is okay if the `old_domains` does not have the expected
|
|
82
|
+
// structure if `domains` is present.
|
|
83
|
+
let mut old_domains = None::<serde_json::Value>;
|
|
84
|
+
let mut domains = None::<serde_json::Value>;
|
|
85
|
+
|
|
86
|
+
let mut http = None::<Vec<HttpJson>>;
|
|
87
|
+
let mut tcp = None::<Vec<TcpJson>>;
|
|
88
|
+
let mut udp = None::<Vec<UdpJson>>;
|
|
89
|
+
let mut hosts = None::<Vec<String>>;
|
|
90
|
+
|
|
91
|
+
while let Some((key, val)) =
|
|
92
|
+
map.next_entry::<String, serde_json::Value>()?
|
|
93
|
+
{
|
|
94
|
+
match key.as_str() {
|
|
95
|
+
"domains" => {
|
|
96
|
+
domains = Some(val);
|
|
97
|
+
}
|
|
98
|
+
"dns" => {
|
|
99
|
+
if domains.is_some() {
|
|
100
|
+
continue; // prefer "domains" over "dns"
|
|
101
|
+
}
|
|
102
|
+
old_domains = Some(val);
|
|
103
|
+
}
|
|
104
|
+
"http" => {
|
|
105
|
+
http = Some(
|
|
106
|
+
Deserialize::deserialize(val)
|
|
107
|
+
.map_err(Error::custom)?,
|
|
108
|
+
);
|
|
109
|
+
}
|
|
110
|
+
"tcp" => {
|
|
111
|
+
tcp = Some(
|
|
112
|
+
Deserialize::deserialize(val)
|
|
113
|
+
.map_err(Error::custom)?,
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
"udp" => {
|
|
117
|
+
udp = Some(
|
|
118
|
+
Deserialize::deserialize(val)
|
|
119
|
+
.map_err(Error::custom)?,
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
"hosts" => {
|
|
123
|
+
hosts = Some(
|
|
124
|
+
Deserialize::deserialize(val)
|
|
125
|
+
.map_err(Error::custom)?,
|
|
126
|
+
);
|
|
127
|
+
}
|
|
128
|
+
_ => {}
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
#[derive(serde::Deserialize, Debug)]
|
|
133
|
+
struct OldDomainJson {
|
|
134
|
+
pub hostname: String,
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
let domains: Option<Vec<DomainJson>> =
|
|
138
|
+
match (domains, old_domains) {
|
|
139
|
+
(Some(domains), _) => {
|
|
140
|
+
Deserialize::deserialize(domains)
|
|
141
|
+
.map_err(Error::custom)?
|
|
142
|
+
}
|
|
143
|
+
(None, Some(old_domains)) => {
|
|
144
|
+
let old_domains: Vec<OldDomainJson> =
|
|
145
|
+
Deserialize::deserialize(old_domains)
|
|
146
|
+
.map_err(Error::custom)?;
|
|
147
|
+
|
|
148
|
+
Some(
|
|
149
|
+
old_domains
|
|
150
|
+
.into_iter()
|
|
151
|
+
.map(|old| DomainJson {
|
|
152
|
+
domain: old.hostname,
|
|
153
|
+
})
|
|
154
|
+
.collect(),
|
|
155
|
+
)
|
|
156
|
+
}
|
|
157
|
+
(None, None) => None, // domains field is optional
|
|
158
|
+
};
|
|
159
|
+
|
|
160
|
+
Ok(NetworkJson { domains, http, tcp, udp, hosts })
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
deserializer.deserialize_any(MyVisitor)
|
|
165
|
+
}
|
|
166
|
+
}
|
|
@@ -1752,9 +1752,9 @@ impl<'a> PE<'a> {
|
|
|
1752
1752
|
/// arrays equivalent to the INT and IAT.
|
|
1753
1753
|
///
|
|
1754
1754
|
/// Another differences between ordinal and delayed imports is that in
|
|
1755
|
-
///
|
|
1756
|
-
///
|
|
1757
|
-
///
|
|
1755
|
+
/// delayed imports the INT and IAT can contain virtual addresses instead
|
|
1756
|
+
/// of relative virtual address (RVAs). Whether they contain one or the
|
|
1757
|
+
/// other depends on a bit in the `attributes` field in the
|
|
1758
1758
|
/// IMAGE_DELAYLOAD_DESCRIPTOR structure.
|
|
1759
1759
|
fn parse_import_impl<P>(
|
|
1760
1760
|
&self,
|
|
@@ -1789,6 +1789,8 @@ impl<'a> PE<'a> {
|
|
|
1789
1789
|
}),
|
|
1790
1790
|
);
|
|
1791
1791
|
|
|
1792
|
+
let mut num_imported_funcs = 0;
|
|
1793
|
+
|
|
1792
1794
|
for mut descriptor in import_descriptors.take(Self::MAX_PE_IMPORTS) {
|
|
1793
1795
|
// If the values in the descriptor are virtual addresses, convert
|
|
1794
1796
|
// them to relative virtual addresses (RVAs) by subtracting the
|
|
@@ -1900,10 +1902,11 @@ impl<'a> PE<'a> {
|
|
|
1900
1902
|
}
|
|
1901
1903
|
|
|
1902
1904
|
if !funcs.is_empty() {
|
|
1905
|
+
num_imported_funcs += funcs.len();
|
|
1903
1906
|
imported_funcs.push((dll_name, funcs));
|
|
1904
1907
|
}
|
|
1905
1908
|
|
|
1906
|
-
if
|
|
1909
|
+
if num_imported_funcs >= Self::MAX_PE_IMPORTS {
|
|
1907
1910
|
break;
|
|
1908
1911
|
}
|
|
1909
1912
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["maturin
|
|
2
|
+
requires = ["maturin==1.7.4"]
|
|
3
3
|
build-backend = "maturin"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "yara-x"
|
|
7
7
|
description = "Python bindings for YARA-X"
|
|
8
|
-
requires-python = ">=3.
|
|
8
|
+
requires-python = ">=3.9"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
keywords = ["pattern-matching", "cybersecurity", "forensics", "malware", "yara"]
|
|
11
11
|
classifiers = [
|