angr 9.2.146__py3-none-manylinux2014_aarch64.whl → 9.2.148__py3-none-manylinux2014_aarch64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/analysis.py +3 -11
- angr/analyses/bindiff.py +343 -68
- angr/analyses/calling_convention/fact_collector.py +5 -4
- angr/analyses/calling_convention/utils.py +1 -0
- angr/analyses/cfg/cfg_arch_options.py +10 -0
- angr/analyses/cfg/cfg_base.py +42 -74
- angr/analyses/cfg/cfg_emulated.py +12 -12
- angr/analyses/cfg/cfg_fast.py +39 -20
- angr/analyses/cfg/cfg_fast_soot.py +3 -3
- angr/analyses/decompiler/callsite_maker.py +28 -18
- angr/analyses/decompiler/clinic.py +4 -4
- angr/analyses/decompiler/condition_processor.py +0 -21
- angr/analyses/decompiler/counters/call_counter.py +3 -0
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +1 -1
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +14 -0
- angr/analyses/decompiler/structured_codegen/c.py +5 -5
- angr/analyses/decompiler/structuring/phoenix.py +11 -3
- angr/analyses/deobfuscator/api_obf_finder.py +5 -1
- angr/analyses/deobfuscator/api_obf_peephole_optimizer.py +1 -1
- angr/analyses/flirt/__init__.py +47 -0
- angr/analyses/flirt/consts.py +160 -0
- angr/analyses/{flirt.py → flirt/flirt.py} +99 -38
- angr/analyses/flirt/flirt_function.py +20 -0
- angr/analyses/flirt/flirt_matcher.py +351 -0
- angr/analyses/flirt/flirt_module.py +32 -0
- angr/analyses/flirt/flirt_node.py +23 -0
- angr/analyses/flirt/flirt_sig.py +356 -0
- angr/analyses/flirt/flirt_utils.py +31 -0
- angr/analyses/forward_analysis/visitors/graph.py +0 -8
- angr/analyses/identifier/runner.py +1 -1
- angr/analyses/reaching_definitions/function_handler.py +4 -4
- angr/analyses/reassembler.py +1 -1
- angr/analyses/stack_pointer_tracker.py +35 -1
- angr/analyses/static_hooker.py +11 -9
- angr/analyses/variable_recovery/engine_ail.py +8 -8
- angr/analyses/variable_recovery/engine_base.py +2 -0
- angr/block.py +6 -6
- angr/calling_conventions.py +74 -23
- angr/engines/vex/heavy/concretizers.py +10 -0
- angr/exploration_techniques/director.py +1 -1
- angr/flirt/__init__.py +15 -44
- angr/knowledge_plugins/functions/function.py +42 -39
- angr/knowledge_plugins/functions/function_manager.py +9 -0
- angr/knowledge_plugins/functions/function_parser.py +9 -1
- angr/knowledge_plugins/functions/soot_function.py +1 -1
- angr/knowledge_plugins/key_definitions/key_definition_manager.py +1 -1
- angr/procedures/definitions/__init__.py +14 -11
- angr/procedures/stubs/format_parser.py +1 -1
- angr/project.py +23 -29
- angr/protos/cfg_pb2.py +14 -25
- angr/protos/function_pb2.py +11 -22
- angr/protos/primitives_pb2.py +36 -47
- angr/protos/variables_pb2.py +28 -39
- angr/protos/xrefs_pb2.py +8 -19
- angr/sim_type.py +0 -16
- angr/simos/cgc.py +1 -1
- angr/simos/linux.py +5 -5
- angr/simos/windows.py +5 -5
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +1 -1
- {angr-9.2.146.dist-info → angr-9.2.148.dist-info}/METADATA +8 -8
- {angr-9.2.146.dist-info → angr-9.2.148.dist-info}/RECORD +66 -58
- {angr-9.2.146.dist-info → angr-9.2.148.dist-info}/WHEEL +1 -1
- {angr-9.2.146.dist-info → angr-9.2.148.dist-info}/entry_points.txt +0 -0
- {angr-9.2.146.dist-info → angr-9.2.148.dist-info/licenses}/LICENSE +0 -0
- {angr-9.2.146.dist-info → angr-9.2.148.dist-info}/top_level.txt +0 -0
|
@@ -584,7 +584,7 @@ class PagedMemoryMixin(
|
|
|
584
584
|
other_pages = set(other._pages)
|
|
585
585
|
intersection = my_pages.intersection(other_pages)
|
|
586
586
|
difference = my_pages.symmetric_difference(other_pages)
|
|
587
|
-
changes: dict[int, set[int] | None] =
|
|
587
|
+
changes: dict[int, set[int] | None] = dict.fromkeys(difference)
|
|
588
588
|
|
|
589
589
|
for pageno in intersection:
|
|
590
590
|
my_page = self._pages[pageno]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.148
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://angr.io/
|
|
@@ -17,22 +17,21 @@ Description-Content-Type: text/markdown
|
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
Requires-Dist: CppHeaderParser
|
|
19
19
|
Requires-Dist: GitPython
|
|
20
|
-
Requires-Dist: ailment==9.2.
|
|
21
|
-
Requires-Dist: archinfo==9.2.
|
|
20
|
+
Requires-Dist: ailment==9.2.148
|
|
21
|
+
Requires-Dist: archinfo==9.2.148
|
|
22
22
|
Requires-Dist: cachetools
|
|
23
23
|
Requires-Dist: capstone==5.0.3
|
|
24
24
|
Requires-Dist: cffi>=1.14.0
|
|
25
|
-
Requires-Dist: claripy==9.2.
|
|
26
|
-
Requires-Dist: cle==9.2.
|
|
25
|
+
Requires-Dist: claripy==9.2.148
|
|
26
|
+
Requires-Dist: cle==9.2.148
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
|
-
Requires-Dist: nampa
|
|
29
28
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
30
29
|
Requires-Dist: protobuf>=5.28.2
|
|
31
30
|
Requires-Dist: psutil
|
|
32
31
|
Requires-Dist: pycparser>=2.18
|
|
33
32
|
Requires-Dist: pydemumble
|
|
34
33
|
Requires-Dist: pyformlang
|
|
35
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.148
|
|
36
35
|
Requires-Dist: rich>=13.1.0
|
|
37
36
|
Requires-Dist: sortedcontainers
|
|
38
37
|
Requires-Dist: sympy
|
|
@@ -59,6 +58,7 @@ Requires-Dist: sqlalchemy; extra == "testing"
|
|
|
59
58
|
Requires-Dist: unicorn==2.0.1.post1; extra == "testing"
|
|
60
59
|
Provides-Extra: unicorn
|
|
61
60
|
Requires-Dist: unicorn==2.0.1.post1; extra == "unicorn"
|
|
61
|
+
Dynamic: license-file
|
|
62
62
|
|
|
63
63
|
# angr
|
|
64
64
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=Rykj7tkd0J0_JFaHWZsEVKA64otf_AaSfwry7_aBW9U,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
4
|
angr/blade.py,sha256=NhesOPloKJC1DQJRv_HBT18X7oNxK16JwAfNz2Lc1o0,15384
|
|
5
|
-
angr/block.py,sha256=
|
|
5
|
+
angr/block.py,sha256=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
6
6
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=ZnkWQaC847QAuuL1pP8H9mMZPac1oHGfDBBEjdhvs7Y,99628
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
9
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
10
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
@@ -12,7 +12,7 @@ angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
|
12
12
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
14
14
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
15
|
-
angr/project.py,sha256=
|
|
15
|
+
angr/project.py,sha256=ANJUNPF41_Gs1vH8SC28FktgogurkNdeTH-uqLNPeoQ,37567
|
|
16
16
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
17
17
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
18
18
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
@@ -20,17 +20,17 @@ angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
|
|
|
20
20
|
angr/sim_procedure.py,sha256=EfXQEX-Na7iNtoqc2-KQhs7AR3tsiMYnxEF1v_lL_ok,26235
|
|
21
21
|
angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
|
|
22
22
|
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
23
|
-
angr/sim_type.py,sha256=
|
|
23
|
+
angr/sim_type.py,sha256=79yPUglvBOTlBvB1-DA3SydDcFFegvEQXY8N0r7kVp4,132169
|
|
24
24
|
angr/sim_variable.py,sha256=tRQXTCE8GO9V_fjC_umiWOm9rY7JLBjq_zrwKptz20g,16625
|
|
25
25
|
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
26
26
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
27
27
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
28
28
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
29
29
|
angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
|
|
30
|
-
angr/analyses/analysis.py,sha256=
|
|
30
|
+
angr/analyses/analysis.py,sha256=GxbQ5MSXcLRXsEWeUA1dnFclmt5yitVRC1NdLjNraIk,14852
|
|
31
31
|
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
32
32
|
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
33
|
-
angr/analyses/bindiff.py,sha256=
|
|
33
|
+
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
34
34
|
angr/analyses/boyscout.py,sha256=KIxl1chV_hQV2Unn-vnoYne1dmFVy1WTUdoidkUpQ8I,2469
|
|
35
35
|
angr/analyses/callee_cleanup_finder.py,sha256=lQRn5rHS6mGNOqDh-UsxX-gs4cDpwQ6KNjvzQFVCdio,2800
|
|
36
36
|
angr/analyses/cdg.py,sha256=UxKp30a1pq0q-FsgmutHU3sdXFwXOjlcal0wzX4EYJM,6229
|
|
@@ -45,20 +45,19 @@ angr/analyses/disassembly.py,sha256=u-O42jtW8IRQH-MDXKhCy5wCL-ZAIHlyeQ5g0GDVgK8,
|
|
|
45
45
|
angr/analyses/disassembly_utils.py,sha256=Pj9vnyji9fBDL3a3vAo2D3H4CfB-XrvVDLIsNXrp9pU,2877
|
|
46
46
|
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
47
47
|
angr/analyses/find_objects_static.py,sha256=27uxIeRA8nJ1XiuGay0oGVYKDvWOI9HFVSuPVXHJT7U,10264
|
|
48
|
-
angr/analyses/flirt.py,sha256=cly_6Xodsgmf5gEagYBH5HXdjhKaY2HwyUW7porEzU8,7798
|
|
49
48
|
angr/analyses/init_finder.py,sha256=lSiBfmKExmhK7wsLGsBaJYQKjW9t7S5mlcH3U--B6CI,9259
|
|
50
49
|
angr/analyses/loop_analysis.py,sha256=up6N3SZzya6N6OlKldo_MP36DqiY_tMbVdFWSM8fByU,9311
|
|
51
50
|
angr/analyses/loopfinder.py,sha256=eNH41_3MW10ccwzw6SGsAuILTKttxikDm2e3c-FUlVI,7030
|
|
52
51
|
angr/analyses/patchfinder.py,sha256=N4J9vQgcaDrCbiPMNopAIPq0uEhJkVhF_usX8HFaXaQ,5046
|
|
53
52
|
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
54
53
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
55
|
-
angr/analyses/reassembler.py,sha256=
|
|
54
|
+
angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
|
|
56
55
|
angr/analyses/s_liveness.py,sha256=K4soSrcQE9pIn7Yf2Lb3LZEu1ymuQVpWzOqLKunFDGQ,7974
|
|
57
56
|
angr/analyses/s_propagator.py,sha256=ChFdiT4wCN0p5mY0UsFGopH3ZH0zM5V_2Ur5cN15Kcc,23667
|
|
58
57
|
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
59
58
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
60
|
-
angr/analyses/stack_pointer_tracker.py,sha256=
|
|
61
|
-
angr/analyses/static_hooker.py,sha256=
|
|
59
|
+
angr/analyses/stack_pointer_tracker.py,sha256=NoFUWzwPhmHztB3P3jESLTshkuV_4oBQkstnFcZwlVk,37710
|
|
60
|
+
angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
|
|
62
61
|
angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
|
|
63
62
|
angr/analyses/vfg.py,sha256=04X_mup9P82bkQIXMju3_DBPPJB1TytA_7RR9uAu3tU,72868
|
|
64
63
|
angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,16136
|
|
@@ -66,16 +65,16 @@ angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
|
66
65
|
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
67
66
|
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
68
67
|
angr/analyses/calling_convention/calling_convention.py,sha256=pnKjexO6hx53lAvLiPGf7bLRs6eKqv5phSBaDELY-dc,44782
|
|
69
|
-
angr/analyses/calling_convention/fact_collector.py,sha256=
|
|
70
|
-
angr/analyses/calling_convention/utils.py,sha256=
|
|
68
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=dIQGPHHFDNGgAcx6w4cGmjsdxKEZyu_JFBc8tsk2kWw,28885
|
|
69
|
+
angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
|
|
71
70
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
72
71
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
73
72
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
74
|
-
angr/analyses/cfg/cfg_arch_options.py,sha256=
|
|
75
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
76
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=
|
|
77
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
78
|
-
angr/analyses/cfg/cfg_fast_soot.py,sha256=
|
|
73
|
+
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
74
|
+
angr/analyses/cfg/cfg_base.py,sha256=o4uG2ob88DdVcDvA9sdjDUo7GPKt9ERXJEgWnKiWDdA,123440
|
|
75
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=fQjhyTWrnBQJEoa7w3pZuOFYI6WI6zG3X78P3ItmEXQ,148123
|
|
76
|
+
angr/analyses/cfg/cfg_fast.py,sha256=uTPVQlfpA3lsNTOUui5HcoN97_pRsiyLm-85ZhheXG8,228108
|
|
77
|
+
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
79
78
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
80
79
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
81
80
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=_nyJPqXKtzse0LZc6O1uxDIAqkKlSrkTTrsJaZ2GH0U,2070
|
|
@@ -107,9 +106,9 @@ angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfC
|
|
|
107
106
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
108
107
|
angr/analyses/decompiler/block_similarity.py,sha256=SseCdWgh-kS9q_C_BRxlQ4OwCRQfg-9IyncxKXm_OG8,6849
|
|
109
108
|
angr/analyses/decompiler/block_simplifier.py,sha256=Pl7qh9ODO41iXkBsKuB8-1gtjnqr6Qc1b8So2MbrTLM,13537
|
|
110
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
111
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
112
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
109
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=ZjtLdxDCLS0WPqOik9bCek2LyuAtQNYA4V-yqGLeENo,23032
|
|
110
|
+
angr/analyses/decompiler/clinic.py,sha256=d_dx47IgXHlpObFyVmtaRpg5Vmg-7KNxi0KQwVso_kc,138172
|
|
111
|
+
angr/analyses/decompiler/condition_processor.py,sha256=61VDwVA1e-oKsv0N8kvh3c5QOdQixrkBZcm3RLuw7KU,52679
|
|
113
112
|
angr/analyses/decompiler/decompilation_cache.py,sha256=oNkeyrEXhyinrN7-fKeDEuGP6I_oAclGjRS4Aa36FoE,1488
|
|
114
113
|
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
115
114
|
angr/analyses/decompiler/decompiler.py,sha256=qbYhdYbWxkbyHYf3D4py7ehXvsOUbXWgz7aCtTXixRE,29828
|
|
@@ -134,7 +133,7 @@ angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=VbCENcybYUGrBD6
|
|
|
134
133
|
angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=3osgrQXaq4ArvnJNOChvzaNtovahEjfEl7igPddh-0c,2499
|
|
135
134
|
angr/analyses/decompiler/counters/__init__.py,sha256=UT5K0cWgkVTAXZxy1qBBzrQip3YR2BOBVpxlAuNlt5o,480
|
|
136
135
|
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
137
|
-
angr/analyses/decompiler/counters/call_counter.py,sha256=
|
|
136
|
+
angr/analyses/decompiler/counters/call_counter.py,sha256=9zGhDElg-74EFL0ZVF7XaxDNzwWaSs5Vd2BDKthdFGU,1407
|
|
138
137
|
angr/analyses/decompiler/counters/expression_counters.py,sha256=DFhe2hpYBgoF-ASALpzVsNJwM4MiNQcrpNKsmXslri8,2850
|
|
139
138
|
angr/analyses/decompiler/counters/seq_cf_structure_counter.py,sha256=P1nQOPo9p4hFg9kHEhJloUbN97UUUcFPaD8edGjl-MI,2320
|
|
140
139
|
angr/analyses/decompiler/dephication/__init__.py,sha256=xd6YSsoXLKVB2g52l-TZGsDwN5Vm3p4b35lqAYcrlhU,280
|
|
@@ -150,7 +149,7 @@ angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo
|
|
|
150
149
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
151
150
|
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=8uU6jDkwgPwX0JtO0dmygtN8lYbV-a5q2ghC_lzrULw,8762
|
|
152
151
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=z9owQb8xNtIaVZddpFY1quHQOPEbBRnuQvmXEyiPHo0,10490
|
|
153
|
-
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=N8pDb1WmIETjF8qb47YZEX8EPDbGVs9HmWxHxF0bGi0,13243
|
|
154
153
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
155
154
|
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=yqW4Ba4Kw7Bf_HqyACLhdsuj2XQhiSXjd02f7Wubf2A,2707
|
|
156
155
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
@@ -215,7 +214,7 @@ angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,
|
|
|
215
214
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
216
215
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=v4v56O-fUdhJkR9dqkzK1MgHyNTQ0182hp7TuA6n1G8,1783
|
|
217
216
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
218
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=
|
|
217
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=J3FwsGmR93vozXzq9YbJuXPW8I_IYCreEQ8EMeApk0o,9969
|
|
219
218
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
220
219
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
221
220
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=_y3YWya1mbZWx663yrwTCMF9F57JVpIpBrrU6VNNyjQ,1273
|
|
@@ -259,19 +258,19 @@ angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=BiXCqC3M3-rey
|
|
|
259
258
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
260
259
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
261
260
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
262
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
261
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=4ySPvb0lOSExNWIPLpsZSDLYWIQbf8ND_EvGUzWAE4s,142752
|
|
263
262
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
264
263
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
265
264
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
266
265
|
angr/analyses/decompiler/structuring/dream.py,sha256=WOvtyQ0ZRABfF2bSQz1kcB_X3KHCL4x3QrJA6YNbgUc,48720
|
|
267
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
266
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=4GmQno5KlL4h8A6SPWsf_5QTGbXHw3_8BVcoJRNLDKw,138321
|
|
268
267
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=4lHkzsEDSGsiEHrAImaJ4cQOmoZes87_GDSzOby90Rc,7219
|
|
269
268
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
270
269
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=3TBpv5gE7CfUrRd1TihDDqMVUJnMstO6v6PXJYAOlpA,47399
|
|
271
270
|
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x1lnHOSaOoQsXJQvHi0jnMe3SdaFUU9tY1mX0Sx6JUI,12318
|
|
272
271
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
273
|
-
angr/analyses/deobfuscator/api_obf_finder.py,sha256=
|
|
274
|
-
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=
|
|
272
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
|
|
273
|
+
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=pyWZgSUyHQ2bnD9Kt3P8fDVwH1QsYrtf2UQJKHVyzVo,2210
|
|
275
274
|
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
276
275
|
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
277
276
|
angr/analyses/deobfuscator/string_obf_finder.py,sha256=bCd5Weos3Xn5nQUdoQfq2MioouTP-DdN0LUmxxmMK3s,36440
|
|
@@ -279,13 +278,22 @@ angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=zJ10ql44q-Fyc6TQ-qJW7
|
|
|
279
278
|
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=SlzSTIZos_pMiC_VavvbfjAaYDoCA_ffj5vblhaBI-0,1947
|
|
280
279
|
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
281
280
|
angr/analyses/fcp/fcp.py,sha256=mJzCZ-JQ9Rv15qnVyqAzAhS8UJHldxbjvLieffG-nn0,16285
|
|
281
|
+
angr/analyses/flirt/__init__.py,sha256=1jKkwUDhwwnxG5BRcYtwogLHLBvtZApXgvcAcHrJrdw,1293
|
|
282
|
+
angr/analyses/flirt/consts.py,sha256=9ldvicgtJZa8Hw8cWOKxGkCYtc09I2q5ZWxctXcg20w,4861
|
|
283
|
+
angr/analyses/flirt/flirt.py,sha256=UNXtUBs11WafKeMAW2BwqKJLFhOyObqmRhfCqYdsJpc,10762
|
|
284
|
+
angr/analyses/flirt/flirt_function.py,sha256=IHskIu5XTTCLKfmow23ig4HIqzs7oGbw7iktIfv40O8,420
|
|
285
|
+
angr/analyses/flirt/flirt_matcher.py,sha256=nzhvPTIlVwHrn07qLLSRvgfpyOnlNRsziDCls_xh0Gg,6353
|
|
286
|
+
angr/analyses/flirt/flirt_module.py,sha256=pUP6vbujzceJMXFxvLAPgek5Y2qPv3KTlKY8ZWHeIQU,920
|
|
287
|
+
angr/analyses/flirt/flirt_node.py,sha256=ecfJq4Ymp38zzvoZPDfLcLSR045GNOM9je-F_NPM5e0,638
|
|
288
|
+
angr/analyses/flirt/flirt_sig.py,sha256=Kcxt7TU76HVW-06amqGlF6HuuG6uyQxjHnZV4uCXP1g,11398
|
|
289
|
+
angr/analyses/flirt/flirt_utils.py,sha256=ojZ_01s7O23vU7dN6xZL7Wyx5M3pgm43frxjbZzSmyU,819
|
|
282
290
|
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
283
291
|
angr/analyses/forward_analysis/forward_analysis.py,sha256=GnEcrQDNxD_yls1fllgXe90IUdc6np2uAWBRaeJc8yc,20020
|
|
284
292
|
angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2rCuoXfBULHhFsU,1592
|
|
285
293
|
angr/analyses/forward_analysis/visitors/__init__.py,sha256=GkGwTjU25YLDaKgrvWuOZwMq32DdOEbmQ9wTOCJQRaA,327
|
|
286
294
|
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
287
295
|
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=8MoSd3v4ztU4buvDzaLmlE8prcOFrS6k1ds4uREadYA,2737
|
|
288
|
-
angr/analyses/forward_analysis/visitors/graph.py,sha256=
|
|
296
|
+
angr/analyses/forward_analysis/visitors/graph.py,sha256=jsNSspZGRjtp9rsewA3qtBhVduJTR8WAK5rLNQOnlfQ,7788
|
|
289
297
|
angr/analyses/forward_analysis/visitors/loop.py,sha256=jB5gTmnVweu4Zs-TsSlYO0FIOykwx2XOPt9naFImzpo,746
|
|
290
298
|
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=BKfsY6yhR3qxBmGLcC6Ct-eAOG_L6MVOUwCl91u_x8Y,785
|
|
291
299
|
angr/analyses/identifier/__init__.py,sha256=82MTyuTZqSyaGz8iIMkkoTm-nIpQfXcoYDiifDuMLfk,96
|
|
@@ -293,7 +301,7 @@ angr/analyses/identifier/custom_callable.py,sha256=3Lg29e-cLyRJmiX4vT65rU464xLh7
|
|
|
293
301
|
angr/analyses/identifier/errors.py,sha256=xVDh09xs7TQQBq7Y1ijdVqsclhgBNbIt61o4Lba-lVI,194
|
|
294
302
|
angr/analyses/identifier/func.py,sha256=0GfuxhiIYpm-x0-SRZ3CpsXBExQGk0Wp9o9r1SrcSKo,1780
|
|
295
303
|
angr/analyses/identifier/identify.py,sha256=w2nsv6YBXBFibsGk5yvsoVDO4Mp6Y-ga6jaG6ztp4q4,32657
|
|
296
|
-
angr/analyses/identifier/runner.py,sha256=
|
|
304
|
+
angr/analyses/identifier/runner.py,sha256=1X8lo2ZTBSJcK9fOkTE1ox-HtdgTwKDQPH-bABfvObo,13760
|
|
297
305
|
angr/analyses/identifier/functions/__init__.py,sha256=mMMRS5wAMgy9yazu7tiMWzp-vTQ5UToyba_X7PogA-Y,1080
|
|
298
306
|
angr/analyses/identifier/functions/atoi.py,sha256=4ccnAkkUydyG_c-kvjyT_PLZfSqv_XSJIBQZ8zataC0,2125
|
|
299
307
|
angr/analyses/identifier/functions/based_atoi.py,sha256=snS0mY0XdIZ_0cSo8mzCN1pxA6HKGrujL0QOlqTN3qk,3272
|
|
@@ -331,7 +339,7 @@ angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquq
|
|
|
331
339
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=BvLsafjUOf5N0aoDYFb0IAzBKIWF0DzYRZVYZd8Bjfc,45861
|
|
332
340
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=K486MkRAvTcTFD52pJtmjWbuVw7KURtGCEC0EDhJmRk,45601
|
|
333
341
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
334
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
342
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=ZwtBHoAAocYIIUYVjg51sG7ejdmTnXrQzbYlUgkDKXA,29105
|
|
335
343
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
336
344
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
337
345
|
angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
|
|
@@ -360,8 +368,8 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
360
368
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
361
369
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
362
370
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
363
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
364
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
371
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=_va66D9qQbzKusNQdKlDlRkDEEYiv8x95RL3WNiB4Fw,31855
|
|
372
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=xQ-2vXT9LWqnU9z8dRshhBOFUNjUOF5H3jgDmdD2QXg,51208
|
|
365
373
|
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
366
374
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
367
375
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
@@ -470,7 +478,7 @@ angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8El
|
|
|
470
478
|
angr/engines/vex/claripy/irop.py,sha256=aN5-kY_OCR2_Z6GrhxY03jv49GsdCOauHuaXeBJUtMw,46240
|
|
471
479
|
angr/engines/vex/heavy/__init__.py,sha256=XkIvjUOyEY9XN_zjM3ozzdSDqbMJHGm1XbehwhshlBE,376
|
|
472
480
|
angr/engines/vex/heavy/actions.py,sha256=Q08wb2TK5HfDduAf8PRXY58h8iIOeCuArNzALzIf0Tk,8668
|
|
473
|
-
angr/engines/vex/heavy/concretizers.py,sha256=
|
|
481
|
+
angr/engines/vex/heavy/concretizers.py,sha256=SHojrhwpJHlSTOPooX_2IZOv0kOOr9D6PJs52rdUlIQ,14826
|
|
474
482
|
angr/engines/vex/heavy/dirty.py,sha256=WXJsC6KBotTdNCn64Zl2GiU_q_YK-QNu4f7RfG4d_qc,18719
|
|
475
483
|
angr/engines/vex/heavy/heavy.py,sha256=tbLzoyzKKTTfhqxT_VUR0ANkcRwCaF-Cj9UvHuLS1EU,15571
|
|
476
484
|
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
@@ -485,7 +493,7 @@ angr/exploration_techniques/base.py,sha256=AoM5IInQExOxC5sHdm_ZNj2HxQE3QeBVzZWVQ
|
|
|
485
493
|
angr/exploration_techniques/bucketizer.py,sha256=BvkBr5SBbWHT6Z1G8AJaNA7BmN9NqRmyr1J98yQ6Ou0,2563
|
|
486
494
|
angr/exploration_techniques/common.py,sha256=_FmR6IxiCm_lal1rP6382r-1hCj-EirDsq_eQdD3x3s,2277
|
|
487
495
|
angr/exploration_techniques/dfs.py,sha256=_pPa8qdusyGN_98FSmqEDNKrDWsBYVJb7Swn55Ngbh8,1208
|
|
488
|
-
angr/exploration_techniques/director.py,sha256=
|
|
496
|
+
angr/exploration_techniques/director.py,sha256=sdqTSCNoieBWln7egJBh7gkJoZAo7zpWC2telwEsn1w,17865
|
|
489
497
|
angr/exploration_techniques/driller_core.py,sha256=VoTeui1DkqmQLRungOwGaZ_xrpnG2U27WEspvBJ_j8U,3468
|
|
490
498
|
angr/exploration_techniques/explorer.py,sha256=_SKBIFX-YDd71aIAJaV9MwCZt64wUvvZmZiBjrjuruk,6243
|
|
491
499
|
angr/exploration_techniques/lengthlimiter.py,sha256=To8SlXhtdDVSqAlCSIvhvqyY8BUs37ZU7ABymhJDz14,590
|
|
@@ -506,7 +514,7 @@ angr/exploration_techniques/timeout.py,sha256=JbKoV1MXYHVaiMERUy0gbEV7yeRy_uDjsg
|
|
|
506
514
|
angr/exploration_techniques/tracer.py,sha256=QqxsNn4jPwbpquZfjZDMlyIyAoZa1cOodDJhvS41Cx4,50111
|
|
507
515
|
angr/exploration_techniques/unique.py,sha256=UqB8dUzvgaSfYBfm15g8XYlBsS8Out0z1loN4sjBsNw,4453
|
|
508
516
|
angr/exploration_techniques/veritesting.py,sha256=8F7emyvQa8SOjr7Ztk7Bw-aIrYjrvmXBeaavMlNLvxs,1392
|
|
509
|
-
angr/flirt/__init__.py,sha256=
|
|
517
|
+
angr/flirt/__init__.py,sha256=uPA4ff2d8FQYfGzq2rgM5pJ9PAH82275On3EFKqXktE,3514
|
|
510
518
|
angr/flirt/build_sig.py,sha256=AO48uuWi76eMiw4-RTJn58j6DDyziy7HCuWMNpApcOQ,10020
|
|
511
519
|
angr/knowledge_plugins/__init__.py,sha256=T8ovRNYYhqk_QkKN2OU5JXzeYZob8iq3v0ZlnX8_Hho,1160
|
|
512
520
|
angr/knowledge_plugins/callsite_prototypes.py,sha256=ZVqTebckIj2VonQSGLFYW6TUgft1J5sOpSwE0K1Nyuk,1587
|
|
@@ -528,17 +536,17 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
528
536
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
529
537
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
530
538
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
531
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
532
|
-
angr/knowledge_plugins/functions/function_manager.py,sha256=
|
|
533
|
-
angr/knowledge_plugins/functions/function_parser.py,sha256=
|
|
534
|
-
angr/knowledge_plugins/functions/soot_function.py,sha256=
|
|
539
|
+
angr/knowledge_plugins/functions/function.py,sha256=jtbUKuZOzRY8rC-2Ef4JAACGNMEahTvQWCNFFu9Z-4U,67949
|
|
540
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=YWp9Hc-Rx9iYChJ3hFv9Tjat-6ZUidv1xsSZLQ2tL9Q,20469
|
|
541
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
542
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
535
543
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
536
544
|
angr/knowledge_plugins/key_definitions/atoms.py,sha256=ydXrPGPCFSMk1JR24qZfPy1xAVOAsc2Isc-QoZPm8Kg,11133
|
|
537
545
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=n1h_yQbwD9qUOmuBFRNZOljeryMv1iOeZAE2ctKdJ5w,661
|
|
538
546
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=AAePJW3BYV0Ju3ZFdqVJdQebPAkB1ASdTiuU9sRqzn4,8574
|
|
539
547
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
540
548
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
541
|
-
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=
|
|
549
|
+
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=LYLFUutUqWB1jSOjWh7b_JQtIaT08duv8_TUZIt5R-k,3313
|
|
542
550
|
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=IAoU_k_vx4AOHdXqv88FQv30AyFhzUNZkn9zwiehJ38,38572
|
|
543
551
|
angr/knowledge_plugins/key_definitions/liveness.py,sha256=FtbfnQTtILx3a3j21MKVVuZX4lN3x7n6ccYuIVDo2CY,6933
|
|
544
552
|
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
@@ -581,7 +589,7 @@ angr/procedures/cgc/fdwait.py,sha256=wknRSRoa1UeLb_59hPhYqYkU6x88p6rf29rhtKBVQiI
|
|
|
581
589
|
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
582
590
|
angr/procedures/cgc/receive.py,sha256=CYxXBnw9CpLfIVn086UuaEvpT4MGEg8otDHtsgf5etY,3668
|
|
583
591
|
angr/procedures/cgc/transmit.py,sha256=SwVCOo_H-_8sZ3qRQ5QT942eNwc2oPoZJr4VyA7Ny2A,2389
|
|
584
|
-
angr/procedures/definitions/__init__.py,sha256=
|
|
592
|
+
angr/procedures/definitions/__init__.py,sha256=IqSpclB1eZhr21rNC3IFMswGNFeEp6FB2uRmGwp4IuE,31949
|
|
585
593
|
angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVkH5jio,508
|
|
586
594
|
angr/procedures/definitions/glibc.py,sha256=L_NvGd20GQqGx2yGPmjfloFmOwQ0_dmA8rpLA6AlpN0,394188
|
|
587
595
|
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
@@ -1196,7 +1204,7 @@ angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bT
|
|
|
1196
1204
|
angr/procedures/stubs/b64_decode.py,sha256=XrTE8etlYtPoB63ErSv7QqBzT9HwnVj9e0IRVReicpU,383
|
|
1197
1205
|
angr/procedures/stubs/caller.py,sha256=c-anKQywa_uohZ4yysUJ_G01S3RjM21nECNy4F_j6YQ,378
|
|
1198
1206
|
angr/procedures/stubs/crazy_scanf.py,sha256=OtbA8l8Gvj-yCFELsEm2R0H9gJIBerW12caD2QFdRnE,654
|
|
1199
|
-
angr/procedures/stubs/format_parser.py,sha256=
|
|
1207
|
+
angr/procedures/stubs/format_parser.py,sha256=6P027c6qhCmOffC7x861W-KRJn6ANxXj7kv8Wvjx9zM,27669
|
|
1200
1208
|
angr/procedures/stubs/syscall_stub.py,sha256=XaxmYrO4T0anV3c0r7DKrGHY8D5mBRBrc-J_m7I6BVA,826
|
|
1201
1209
|
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
1202
1210
|
angr/procedures/testing/manyargs.py,sha256=6HuAjU0fKszwFUWcS_qaYuc4P_lILJiHdQX5xw8q8sk,135
|
|
@@ -1239,19 +1247,19 @@ angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9p
|
|
|
1239
1247
|
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
1240
1248
|
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
1241
1249
|
angr/protos/__init__.py,sha256=VdHXdfTK_wbCsdTJ3umFhWpUKZ9SEQUu9gQsd9TukY8,420
|
|
1242
|
-
angr/protos/cfg_pb2.py,sha256=
|
|
1243
|
-
angr/protos/function_pb2.py,sha256=
|
|
1244
|
-
angr/protos/primitives_pb2.py,sha256=
|
|
1245
|
-
angr/protos/variables_pb2.py,sha256=
|
|
1246
|
-
angr/protos/xrefs_pb2.py,sha256
|
|
1250
|
+
angr/protos/cfg_pb2.py,sha256=MOZ74RcON7lGKjA2RJyjLCpRwHHZ0veEuQOkY_SobSc,2464
|
|
1251
|
+
angr/protos/function_pb2.py,sha256=qH8_xrk6B2nGVosY3oCyWbOT86yYGqLHkuZPOCO8UpM,2097
|
|
1252
|
+
angr/protos/primitives_pb2.py,sha256=Ou3JWw4z-Wa2TFRXrX2neA4gUzlk3oiC3U6rGm6ufj0,5987
|
|
1253
|
+
angr/protos/variables_pb2.py,sha256=fZ0sMXZFrSgs9G7Hzt7zSlDUN5gMKaAcdppsR7TQKF8,4576
|
|
1254
|
+
angr/protos/xrefs_pb2.py,sha256=wznhpgAE5rSVyP_E8wdFZF6OyIYEwtcZ8aq0zx8FXzs,1101
|
|
1247
1255
|
angr/simos/__init__.py,sha256=viflGa2m57GOjuWxFM80osoFZmGEGhA6Ot1ElVau6Xg,1002
|
|
1248
|
-
angr/simos/cgc.py,sha256=
|
|
1256
|
+
angr/simos/cgc.py,sha256=LoBl_csMIVqn7WDqmspqAN5ETnTUoUv4PkVqobxqspU,5592
|
|
1249
1257
|
angr/simos/javavm.py,sha256=xPhWuvSdDG-GskoPPrLRfoJGABQ8J3H6SjpH1VoZTUQ,20566
|
|
1250
|
-
angr/simos/linux.py,sha256=
|
|
1258
|
+
angr/simos/linux.py,sha256=ShLsqFIut1jGuo6NGQSlT7ymoaEEwgTNkloJNN0pDDI,23204
|
|
1251
1259
|
angr/simos/simos.py,sha256=L43oFMGRWiVEpfMWhb_Y_iawsaxm7qw_fG-sfKF344M,18464
|
|
1252
1260
|
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
1253
1261
|
angr/simos/userland.py,sha256=jvHdMocEJAlwrTjupubdGfD6snt_DpQ_pyHrIZyV7NE,7354
|
|
1254
|
-
angr/simos/windows.py,sha256=
|
|
1262
|
+
angr/simos/windows.py,sha256=EneZrucxYgw5wII0FNYIEPjiLnhv0ju_nAEOpk8ssME,27878
|
|
1255
1263
|
angr/simos/xbox.py,sha256=f0IL9ZTgYX8feEck5nBu87bYcehbdmYKQVoze6wsmY0,971
|
|
1256
1264
|
angr/state_plugins/__init__.py,sha256=AOCYC5r6YWswhEhBEdtNDK9d9N_qhAl902UMHyGi8QY,2419
|
|
1257
1265
|
angr/state_plugins/callstack.py,sha256=BMBl0qX10Qxkwl__lVP_Ho8aaQcSJNqvMAiY6csL1y8,11825
|
|
@@ -1318,7 +1326,7 @@ angr/storage/memory_mixins/underconstrained_mixin.py,sha256=pF2p91j0g4MhWMDVcCuL
|
|
|
1318
1326
|
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=KVWgw7bROwsnPs8JN7ugTzGz94NOWuw0ld9KKQhwrN8,1110
|
|
1319
1327
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1320
1328
|
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=7DSOkDioqJOqmEgWXO974uD3Ogmhm7m9c4zQ8druZOs,10520
|
|
1321
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=
|
|
1329
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=E2LNktW8ln2e5ofMfhQlyUjB4XVChkkqVwit32NWamY,29386
|
|
1322
1330
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1323
1331
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=YYFxpXsf9-ALl1x86_Gm71H45jqtdkkgLWPf0twqefU,1578
|
|
1324
1332
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
@@ -1369,9 +1377,9 @@ angr/utils/types.py,sha256=5EDtrusFLf1fIcMz8fgJiPPsUhpEm0bf_oqZ_PSRje0,1836
|
|
|
1369
1377
|
angr/utils/ssa/__init__.py,sha256=ohP9IJh9ZvdVH8nH-ZrYA8hwIi8L98XQ6NMNL6q_pJ0,13649
|
|
1370
1378
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1371
1379
|
angr/utils/ssa/vvar_uses_collector.py,sha256=O2aNZeM5DL8qatyhYuMhgbYGFp6Onm2yr9pKq1wRjA0,1347
|
|
1372
|
-
angr-9.2.
|
|
1373
|
-
angr-9.2.
|
|
1374
|
-
angr-9.2.
|
|
1375
|
-
angr-9.2.
|
|
1376
|
-
angr-9.2.
|
|
1377
|
-
angr-9.2.
|
|
1380
|
+
angr-9.2.148.dist-info/licenses/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1381
|
+
angr-9.2.148.dist-info/METADATA,sha256=DdeUKR34seWr3zxK0wEQnyDNKabfQmB9E1JjxCEdLAU,4910
|
|
1382
|
+
angr-9.2.148.dist-info/WHEEL,sha256=CpqTiipzrepUU50zVwagTnas8_oaVe1PLaXLSrbghtk,109
|
|
1383
|
+
angr-9.2.148.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1384
|
+
angr-9.2.148.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1385
|
+
angr-9.2.148.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|