angr 9.2.138__py3-none-manylinux2014_x86_64.whl → 9.2.140__py3-none-manylinux2014_x86_64.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/calling_convention/calling_convention.py +48 -21
- angr/analyses/calling_convention/fact_collector.py +59 -12
- angr/analyses/calling_convention/utils.py +2 -2
- angr/analyses/cfg/cfg_base.py +13 -0
- angr/analyses/cfg/cfg_fast.py +23 -4
- angr/analyses/decompiler/ail_simplifier.py +79 -53
- angr/analyses/decompiler/block_simplifier.py +0 -2
- angr/analyses/decompiler/callsite_maker.py +80 -14
- angr/analyses/decompiler/clinic.py +99 -80
- angr/analyses/decompiler/condition_processor.py +2 -2
- angr/analyses/decompiler/decompiler.py +19 -7
- angr/analyses/decompiler/dephication/rewriting_engine.py +16 -7
- angr/analyses/decompiler/expression_narrower.py +1 -1
- angr/analyses/decompiler/optimization_passes/__init__.py +3 -0
- angr/analyses/decompiler/optimization_passes/condition_constprop.py +149 -0
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +8 -7
- angr/analyses/decompiler/optimization_passes/deadblock_remover.py +12 -3
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +1 -1
- angr/analyses/decompiler/optimization_passes/ite_region_converter.py +21 -13
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +21 -12
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +17 -9
- angr/analyses/decompiler/optimization_passes/return_duplicator_high.py +7 -10
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +12 -1
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +61 -25
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py +50 -1
- angr/analyses/decompiler/presets/fast.py +2 -0
- angr/analyses/decompiler/presets/full.py +2 -0
- angr/analyses/decompiler/region_simplifiers/expr_folding.py +259 -108
- angr/analyses/decompiler/region_simplifiers/region_simplifier.py +28 -9
- angr/analyses/decompiler/ssailification/rewriting_engine.py +20 -2
- angr/analyses/decompiler/ssailification/traversal_engine.py +4 -3
- angr/analyses/decompiler/structured_codegen/c.py +10 -3
- angr/analyses/decompiler/structuring/dream.py +28 -19
- angr/analyses/decompiler/structuring/phoenix.py +253 -89
- angr/analyses/decompiler/structuring/recursive_structurer.py +1 -0
- angr/analyses/decompiler/structuring/structurer_base.py +121 -46
- angr/analyses/decompiler/structuring/structurer_nodes.py +6 -1
- angr/analyses/decompiler/utils.py +60 -1
- angr/analyses/deobfuscator/api_obf_finder.py +13 -5
- angr/analyses/deobfuscator/api_obf_type2_finder.py +166 -0
- angr/analyses/deobfuscator/string_obf_finder.py +105 -18
- angr/analyses/forward_analysis/forward_analysis.py +1 -1
- angr/analyses/propagator/top_checker_mixin.py +6 -6
- angr/analyses/reaching_definitions/__init__.py +2 -1
- angr/analyses/reaching_definitions/dep_graph.py +1 -12
- angr/analyses/reaching_definitions/engine_vex.py +36 -31
- angr/analyses/reaching_definitions/function_handler.py +15 -2
- angr/analyses/reaching_definitions/rd_state.py +1 -37
- angr/analyses/reaching_definitions/reaching_definitions.py +13 -24
- angr/analyses/s_propagator.py +129 -87
- angr/analyses/s_reaching_definitions/s_rda_model.py +7 -1
- angr/analyses/s_reaching_definitions/s_rda_view.py +2 -2
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +3 -1
- angr/analyses/stack_pointer_tracker.py +36 -22
- angr/analyses/typehoon/simple_solver.py +45 -7
- angr/analyses/typehoon/typeconsts.py +18 -5
- angr/analyses/variable_recovery/engine_ail.py +1 -1
- angr/analyses/variable_recovery/engine_base.py +62 -67
- angr/analyses/variable_recovery/engine_vex.py +1 -1
- angr/analyses/variable_recovery/irsb_scanner.py +2 -2
- angr/block.py +69 -107
- angr/callable.py +14 -7
- angr/calling_conventions.py +81 -10
- angr/distributed/__init__.py +1 -1
- angr/engines/__init__.py +7 -8
- angr/engines/engine.py +3 -138
- angr/engines/failure.py +2 -2
- angr/engines/hook.py +2 -2
- angr/engines/light/engine.py +5 -10
- angr/engines/pcode/emulate.py +2 -2
- angr/engines/pcode/engine.py +2 -14
- angr/engines/pcode/lifter.py +2 -2
- angr/engines/procedure.py +2 -2
- angr/engines/soot/engine.py +2 -2
- angr/engines/soot/statements/switch.py +1 -1
- angr/engines/successors.py +123 -17
- angr/engines/syscall.py +2 -2
- angr/engines/unicorn.py +3 -3
- angr/engines/vex/heavy/heavy.py +3 -15
- angr/engines/vex/lifter.py +2 -2
- angr/engines/vex/light/light.py +2 -2
- angr/factory.py +4 -19
- angr/knowledge_plugins/cfg/cfg_model.py +3 -2
- angr/knowledge_plugins/key_definitions/atoms.py +8 -4
- angr/knowledge_plugins/key_definitions/live_definitions.py +41 -103
- angr/knowledge_plugins/labels.py +2 -2
- angr/knowledge_plugins/obfuscations.py +1 -0
- angr/knowledge_plugins/xrefs/xref_manager.py +4 -0
- angr/sim_type.py +19 -17
- angr/state_plugins/plugin.py +19 -4
- angr/storage/memory_mixins/memory_mixin.py +1 -1
- angr/storage/memory_mixins/paged_memory/pages/multi_values.py +10 -5
- angr/utils/ssa/__init__.py +119 -4
- {angr-9.2.138.dist-info → angr-9.2.140.dist-info}/METADATA +6 -6
- {angr-9.2.138.dist-info → angr-9.2.140.dist-info}/RECORD +100 -98
- {angr-9.2.138.dist-info → angr-9.2.140.dist-info}/LICENSE +0 -0
- {angr-9.2.138.dist-info → angr-9.2.140.dist-info}/WHEEL +0 -0
- {angr-9.2.138.dist-info → angr-9.2.140.dist-info}/entry_points.txt +0 -0
- {angr-9.2.138.dist-info → angr-9.2.140.dist-info}/top_level.txt +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=7_qAgvGpWVLzcVVCxImhVYji45X9JpeTjoXYzpyPgSY,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=
|
|
6
|
-
angr/callable.py,sha256=
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
5
|
+
angr/block.py,sha256=34rsSr800m0CM1cqniusdCF8GMVc1yXJVUVKu7cYfBE,14679
|
|
6
|
+
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
+
angr/calling_conventions.py,sha256=RIkw2-rbSSLws4W7EWG8mbZJe15G2IcMlBe7QKdhavY,96758
|
|
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
|
|
11
|
-
angr/factory.py,sha256=
|
|
11
|
+
angr/factory.py,sha256=zRVsbpZzMQ9Eemi_2_dsZh9utW5A6TUOrUfTqcBZT0s,17590
|
|
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
|
|
@@ -20,7 +20,7 @@ angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
|
|
|
20
20
|
angr/sim_procedure.py,sha256=qI1NMB67AXi6bfo_mUqhoOvb39hDk--2irv7p55AdCE,26223
|
|
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=IEPNqkPhnXT1FOwv5hODUaB35OIlp2qYB_E4DjaRAjM,132654
|
|
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
|
|
@@ -54,10 +54,10 @@ angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,1
|
|
|
54
54
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
55
55
|
angr/analyses/reassembler.py,sha256=dc1bM-4pxVa2dypC7qL2REdKhpyKhSbQPf-LCDIBEwA,98351
|
|
56
56
|
angr/analyses/s_liveness.py,sha256=4BR_E3_Is7urOkKgtB1hgGpRoyqfytv9WcqrpSXc74k,5881
|
|
57
|
-
angr/analyses/s_propagator.py,sha256=
|
|
57
|
+
angr/analyses/s_propagator.py,sha256=VJWWutbVjpY-rtbAj69YGqirmNrMcz5ymCMl29KCpIo,23215
|
|
58
58
|
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
59
59
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
60
|
-
angr/analyses/stack_pointer_tracker.py,sha256=
|
|
60
|
+
angr/analyses/stack_pointer_tracker.py,sha256=54wijIt-uJZ2KIOjbEpgKucNoDK3qIvtGh2WuEvRAD0,33370
|
|
61
61
|
angr/analyses/static_hooker.py,sha256=8aine4A1KnkWNfn7IarlWUyX7NjygbFDYbE3_ptCPlA,1764
|
|
62
62
|
angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
|
|
63
63
|
angr/analyses/vfg.py,sha256=rlA3LXDAtGGiiqoWsQFOLPxU3pvhvTWpC_WPfC1d5tM,72879
|
|
@@ -65,16 +65,16 @@ angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,1613
|
|
|
65
65
|
angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
66
66
|
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
67
67
|
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
68
|
-
angr/analyses/calling_convention/calling_convention.py,sha256=
|
|
69
|
-
angr/analyses/calling_convention/fact_collector.py,sha256=
|
|
70
|
-
angr/analyses/calling_convention/utils.py,sha256=
|
|
68
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=R4V4_aeZGIHjLaeN3KcJewpeNjPKBPgc-HbdK3UQM30,40866
|
|
69
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=21zePCKqAzKved30HZJV1kCTG6_TNb_yKejHk8uOG8w,24236
|
|
70
|
+
angr/analyses/calling_convention/utils.py,sha256=JBLI3W_Tw-P6lzVMbUSiVEkjQFlOm5YpGCY8ANcH80I,2051
|
|
71
71
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
72
72
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
73
73
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
74
74
|
angr/analyses/cfg/cfg_arch_options.py,sha256=QpC_sonf0eODcIxWtjVrW6E-gFRGvvdataqGEp9DFFI,3142
|
|
75
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
75
|
+
angr/analyses/cfg/cfg_base.py,sha256=E7CSOIDVpsABw9Py6hvwPomtgA1ivWgi5vt4Lmd7PKQ,122730
|
|
76
76
|
angr/analyses/cfg/cfg_emulated.py,sha256=DkLzdePp50ecbFDhpqEtK43V8H1K4BnQe9NdjlNnonY,147826
|
|
77
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
77
|
+
angr/analyses/cfg/cfg_fast.py,sha256=9Qz_mu3ey39DMChJo6hAd0BgQu7Hr8QXysBlbHRbCmk,226671
|
|
78
78
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=X2uroCSbtfgugO33pbIU_hx62bHzZTBweO35iLwEaLo,25906
|
|
79
79
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
80
80
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=6P6GXkJ0v_WlWtz7aRpGXuY8LlfqTN3A703b1VnH5IQ,766
|
|
@@ -100,19 +100,19 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaa
|
|
|
100
100
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
101
101
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
102
102
|
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
103
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
103
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=w1cXyyJ8x9AoQF1jM0i7M4wQEmYT2RSbZ8UbsZmNjTw,74245
|
|
104
104
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
105
105
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
106
106
|
angr/analyses/decompiler/block_similarity.py,sha256=SseCdWgh-kS9q_C_BRxlQ4OwCRQfg-9IyncxKXm_OG8,6849
|
|
107
|
-
angr/analyses/decompiler/block_simplifier.py,sha256=
|
|
108
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
109
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
110
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
107
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=Pl7qh9ODO41iXkBsKuB8-1gtjnqr6Qc1b8So2MbrTLM,13537
|
|
108
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=BRCbGj06JMcovtIc_xgZwHMJ5Vlr87G-Mv3plQPD_5c,21653
|
|
109
|
+
angr/analyses/decompiler/clinic.py,sha256=im7p-NjcgjeN_Q05_matVYvLJ1r1-eVKmY9IE2xd2k8,128976
|
|
110
|
+
angr/analyses/decompiler/condition_processor.py,sha256=9-0RVyDKP-pSMdEK_pRw-s95mKV3nfYeoQCgRMHclAs,53782
|
|
111
111
|
angr/analyses/decompiler/decompilation_cache.py,sha256=raMsZL9i5ajKP-lO_Qo_1gP2bsDccTNP9cNhINbk8ac,1375
|
|
112
112
|
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
113
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
113
|
+
angr/analyses/decompiler/decompiler.py,sha256=TMOHacQyiOYC7kvva-j0gdUnsAx3atjqOAgZCPELZbg,29380
|
|
114
114
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
115
|
-
angr/analyses/decompiler/expression_narrower.py,sha256=
|
|
115
|
+
angr/analyses/decompiler/expression_narrower.py,sha256=bgTHxNljl3ghUmNMIdz8kpi4v7iMc8wQh508eCugBtc,10337
|
|
116
116
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
117
117
|
angr/analyses/decompiler/graph_region.py,sha256=P9QplvE0RmsuNOxn-meO10xJ3r3Sf4EOsyTDmUpaXrQ,16532
|
|
118
118
|
angr/analyses/decompiler/jump_target_collector.py,sha256=qR11VsIp6H1N-19xCdXMRs1LGX31o3_Cz1Z5wRyMIl8,1173
|
|
@@ -124,7 +124,7 @@ angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2D
|
|
|
124
124
|
angr/analyses/decompiler/return_maker.py,sha256=pKn9_y5VXqTeJnD5uzLLd9sH_Dp_9wkPcWPiJPTV-7A,2550
|
|
125
125
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
|
|
126
126
|
angr/analyses/decompiler/sequence_walker.py,sha256=XW5nKfa9n0Dh1p6M-tLDK1ofr51RPh_AcLUE50yHvKk,9595
|
|
127
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
127
|
+
angr/analyses/decompiler/utils.py,sha256=qiZSbTIDOojeOB7NJbWki9GACu6XqLnwEKFkryvhOiY,38302
|
|
128
128
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
129
129
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=llCGH-p9AzfECO_fWTsSUYhX1SzIUr1BKRDTLfc8aXs,23426
|
|
130
130
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=VbCENcybYUGrBD6U1Bp4nonNeEf05z_qhrpHBcyJw_4,496
|
|
@@ -139,31 +139,32 @@ angr/analyses/decompiler/dephication/dephication_base.py,sha256=9HdE_zKnakLSYJZr
|
|
|
139
139
|
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
140
140
|
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=vhBGSu1VN2Yl7eethD5fiatHPOjGNs4JSov5x-SMFFw,3400
|
|
141
141
|
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=jYMpzmQ_r8ojLldZ2e_M20E3wRqWKlQZKfWeCd-_YqA,14060
|
|
142
|
-
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=
|
|
142
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=OPhLBkJOPEyxjmioFy3fYpESjkxg-wWsJ8rBjwkW8_g,15493
|
|
143
143
|
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=Y5On7C6glk3VztwbQFzKYlTTRf2vu9bB5fcRH3rbuhQ,4802
|
|
144
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=
|
|
144
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=nv2cTSPfQAaYXHBqeEhHcU4iYxoG5E6FT7TNkvTsnAk,5007
|
|
145
145
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=uUzQWVkeKL2C9Lq8NZ7UkkZBAXydxOd0F1jxr0Zi__Q,5514
|
|
146
146
|
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
147
147
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
148
|
+
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=HJQ1H5CAeJCJT9kvLNc0_MXCZm3B7O0GNs3l7DsldKc,5742
|
|
148
149
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=z9owQb8xNtIaVZddpFY1quHQOPEbBRnuQvmXEyiPHo0,10490
|
|
149
|
-
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256
|
|
150
|
+
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=-Y8JXf4IJIeBY9jSiHe_agVYSWrr6ATaSaat4M10gQs,13245
|
|
150
151
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
151
|
-
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=yqW4Ba4Kw7Bf_HqyACLhdsuj2XQhiSXjd02f7Wubf2A,2707
|
|
152
153
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
153
154
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=PiCFksceRfu0nPPSKfzTsMmrAJ1YaHMEjcuCHcaYbgM,16662
|
|
154
155
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
155
156
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=lS70nBKCSWQ69vcvazAI24zgUdEFtbg33wr6t78XFqI,4029
|
|
156
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=
|
|
157
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=_rqXGIs03Idkw7IOtxHhapQ-qCMO_mKlJ_FfHAM6TAo,24842
|
|
157
158
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
158
|
-
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=
|
|
159
|
+
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=HoQTAvZ2-tmNrNjJ1GbR55nTC9O_wuKpJ7yNEfZBszQ,13471
|
|
159
160
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=qxSCQD5vtCzweHX9p6CY2REc0fIbk53igmAnIDmKprk,38819
|
|
160
161
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=BzgSGM39Uv1WAGPM831wLnKW8t-mw9tQoV07ZlxbU_Y,3379
|
|
161
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=ZktrVnylqMhkYHlv37wscSnpHw2Mbd3grnv8g5kbry4,23030
|
|
162
163
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=X6A252YhqUvT7A6J5NqCKBom2PRlh5NDHpAjXfNvBfg,7854
|
|
163
164
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
164
165
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
165
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
166
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=
|
|
166
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=Rd4981oaZCMSCorpwe162yxtwlzsESnph2qLRoByhEQ,25055
|
|
167
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=EgDtVm175NStVFcppjnTrlE-aP0F2oW0tgK3_kpp6xA,2054
|
|
167
168
|
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
168
169
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=wRa-_zwogSbqgxKu-apHp-fSMwuiBFrKgXa29BiY4YE,14422
|
|
169
170
|
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=gvGpjP3t-an8iIBkmPGXob0-aRHL2idGZpd7hErlgFo,6461
|
|
@@ -199,7 +200,7 @@ angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KT
|
|
|
199
200
|
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=5ThmIgu38Un_N5AltnQtcTnoEnOT45HRu6NehB3rG5M,1713
|
|
200
201
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
201
202
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
202
|
-
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=
|
|
203
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=ZIucLTDC8hxj3kn7muEpITAm3Hv1z5suqOx-rSOzWCU,15692
|
|
203
204
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=r39kiAST4tC-iInTuFgnek0KOljBS3AxS2wPvEpEB58,2044
|
|
204
205
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=40RcqWIMALxfA-LG-DN2N_yK5uW2HWF_x4AquCTMbNU,6245
|
|
205
206
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=wKj38t6sTd6wpbVpbPG7Nxiz9vU5K_TvL4sws04TsDk,4681
|
|
@@ -210,12 +211,12 @@ angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,
|
|
|
210
211
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
211
212
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=v4v56O-fUdhJkR9dqkzK1MgHyNTQ0182hp7TuA6n1G8,1783
|
|
212
213
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
213
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=
|
|
214
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=d-Ma-WmI5H_g26KUcubQttExEeCZdyhl9y1BP64VzDQ,9392
|
|
214
215
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
215
216
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
216
217
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=_y3YWya1mbZWx663yrwTCMF9F57JVpIpBrrU6VNNyjQ,1273
|
|
217
218
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=DqGdwso3CuulthzNNjUseNF2eb8VMQhhritjWSwCViE,1425
|
|
218
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=
|
|
219
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=7nScYJZpXo9M8hcdu4FSWOGb_5Ey9F_sQhopqCMQooM,3992
|
|
219
220
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=MHkgIgOMWaAVqe5q4X-yzIxkPzd2KyTngvhxtXorOi4,1605
|
|
220
221
|
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=DPiL5gstqkiQicWlLABiQwgpUoiunZNGiIg7tUUpAkA,3295
|
|
221
222
|
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=-bENfNstVil2AW-AUsQHr6GTt6TyhISw2jaNpHkheuU,1904
|
|
@@ -229,52 +230,53 @@ angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=RRzuc2
|
|
|
229
230
|
angr/analyses/decompiler/peephole_optimizations/utils.py,sha256=AjnndY2RIRg9R2vzVnEleq_IJgbtBPK3NlfK5vM0UYw,719
|
|
230
231
|
angr/analyses/decompiler/presets/__init__.py,sha256=NWARH5yOyBz4-5qKhzH56PNfPNRViNKMDeESlpplFxo,375
|
|
231
232
|
angr/analyses/decompiler/presets/basic.py,sha256=KDHlMq_XWonN2-JIYYVIhbI6FbfzXttmkgXFrwi5MiA,803
|
|
232
|
-
angr/analyses/decompiler/presets/fast.py,sha256=
|
|
233
|
-
angr/analyses/decompiler/presets/full.py,sha256=
|
|
233
|
+
angr/analyses/decompiler/presets/fast.py,sha256=1NJfllSuvmBOQNwbpvMwL2fBfXf5ULsmk97wh7V5hZ4,1490
|
|
234
|
+
angr/analyses/decompiler/presets/full.py,sha256=zEtJ-dWYU3xpl1hwX1A3CeaXsFF2NXgsEyzG8x60faw,1734
|
|
234
235
|
angr/analyses/decompiler/presets/preset.py,sha256=sTK5fJfx_Cdx0Gjn7y4bOrDp-2eFPeg1e1d5Eyc9uXk,1256
|
|
235
236
|
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=BSD9osrReTEdapOMmyI1kFiN7AmE1EeJGLBV7i0u-Uc,117
|
|
236
237
|
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=qLs1LxEYHdPrh5c33IdkHJqtjBU7z4Sz6fxOK4Fn0Oc,3816
|
|
237
238
|
angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=IgbSKemlJHlyGR6ANJlsPLMjCN262gJvytaqPi0EWuA,2594
|
|
238
|
-
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=
|
|
239
|
+
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=QUEAUi_mAwwtK4PYmMkF_4S_-JCLvhA6QWmDz2hgJFo,30281
|
|
239
240
|
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=HKAh1m8WryAR2WMGjmFIvO6DOYymlA7sKRnKfbyJfvk,6100
|
|
240
241
|
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=rLH5csZCB5-cCsWJh2SdvWLVqgGfnfi7YqQlE7M328I,4406
|
|
241
242
|
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
242
243
|
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=uKieYMvygDt8GhK1b_EjHTP064I1FTEZd6HIEntB0K8,6315
|
|
243
244
|
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=LY7TH54eCZOqKW67b0OVfS_-35rRoHPhazdyB8Ng4vE,600
|
|
244
|
-
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=
|
|
245
|
+
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=LmHp5PR75iE9phvmUA5tXsoE6-7OHy1FwyffpKL-AAw,8761
|
|
245
246
|
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=sYhRG2kti3NZOZf5f94Z2eX9tunTAUrzT83KlkUyk8A,24900
|
|
246
247
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
247
248
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
248
249
|
angr/analyses/decompiler/ssailification/rewriting.py,sha256=49OcvTm3NDbF7xGNkJaYa9KyHqpdsS8-_GRetoZYExg,12833
|
|
249
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
250
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=JmsUNeUgh-8x2-7ZG3sPdLnUqLfS7DBAvg1_-gjLZSE,32949
|
|
250
251
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
251
252
|
angr/analyses/decompiler/ssailification/ssailification.py,sha256=4GpmHJflyEpecW3vFaUImeFAsK7D5cqzq4m-fmhGxUs,9358
|
|
252
253
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
253
|
-
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=
|
|
254
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=fdYGD_032HZrtEBvphR6RgBUJgeNDpGzCpABpA-Zgdg,9804
|
|
254
255
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
255
256
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
256
257
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
257
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
258
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=W0KElgzS20XEoAks9I0Q2PGW-oLnyianu4BkJjrD2VU,142828
|
|
258
259
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
259
260
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
260
261
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
261
|
-
angr/analyses/decompiler/structuring/dream.py,sha256=
|
|
262
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
263
|
-
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=
|
|
262
|
+
angr/analyses/decompiler/structuring/dream.py,sha256=UnEO6aWp_WOY-aml7sIeJ_du8ySx04-XKFWZi3DnhFA,48690
|
|
263
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=bUlIu1EdT_wS2VD5sKR7SM4BYDIedA9OPa4nKfATf-4,137658
|
|
264
|
+
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=4lHkzsEDSGsiEHrAImaJ4cQOmoZes87_GDSzOby90Rc,7219
|
|
264
265
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
265
|
-
angr/analyses/decompiler/structuring/structurer_base.py,sha256=
|
|
266
|
-
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=
|
|
266
|
+
angr/analyses/decompiler/structuring/structurer_base.py,sha256=NsrUcDzbnpO-nKjVLxMMok0dQlAM6qbHXlfR2ajKjlM,47327
|
|
267
|
+
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x1lnHOSaOoQsXJQvHi0jnMe3SdaFUU9tY1mX0Sx6JUI,12318
|
|
267
268
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
268
|
-
angr/analyses/deobfuscator/api_obf_finder.py,sha256=
|
|
269
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=Z7AzJVssE-ERfNlPSlQ1ng-xvfCfoG0_SLrRqZCqJ3I,13623
|
|
269
270
|
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=VTxw3FPV7-OCPwAy6LLPnBWtiD2eDxYwAF0g3h4YOCM,2207
|
|
271
|
+
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
270
272
|
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
271
|
-
angr/analyses/deobfuscator/string_obf_finder.py,sha256=
|
|
273
|
+
angr/analyses/deobfuscator/string_obf_finder.py,sha256=bCd5Weos3Xn5nQUdoQfq2MioouTP-DdN0LUmxxmMK3s,36440
|
|
272
274
|
angr/analyses/deobfuscator/string_obf_opt_passes.py,sha256=zJ10ql44q-Fyc6TQ-qJW7cZHlk80RI2VlCzqG1-h9FM,5345
|
|
273
275
|
angr/analyses/deobfuscator/string_obf_peephole_optimizer.py,sha256=SlzSTIZos_pMiC_VavvbfjAaYDoCA_ffj5vblhaBI-0,1947
|
|
274
276
|
angr/analyses/fcp/__init__.py,sha256=E9dxFckDM9DijfU4RRg9SGL6xDKCz7yBBP-XSkS-S9U,115
|
|
275
277
|
angr/analyses/fcp/fcp.py,sha256=f_RQp6s4aBHMcUPsGrHOylcdvjGo6HmqumPzgJLxcfI,16326
|
|
276
278
|
angr/analyses/forward_analysis/__init__.py,sha256=Du2Ng6EzDQzQYcRCffkOKjLztqa5GBNhiLSgErIPnHE,319
|
|
277
|
-
angr/analyses/forward_analysis/forward_analysis.py,sha256=
|
|
279
|
+
angr/analyses/forward_analysis/forward_analysis.py,sha256=GnEcrQDNxD_yls1fllgXe90IUdc6np2uAWBRaeJc8yc,20020
|
|
278
280
|
angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2rCuoXfBULHhFsU,1592
|
|
279
281
|
angr/analyses/forward_analysis/visitors/__init__.py,sha256=GkGwTjU25YLDaKgrvWuOZwMq32DdOEbmQ9wTOCJQRaA,327
|
|
280
282
|
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
@@ -316,20 +318,20 @@ angr/analyses/propagator/__init__.py,sha256=lxvNUfUJYOPqO8se8Nej_NNCObLt90QFIrZh
|
|
|
316
318
|
angr/analyses/propagator/engine_base.py,sha256=cZOwG1Qn44aoQ4-L5O4yQ_FhA6k0jwOMNfB27nyK7Tk,1960
|
|
317
319
|
angr/analyses/propagator/engine_vex.py,sha256=ZqSKJ3PqlBI-lvLZFwl3beiknNIyUxHf_lGvzyhlIhE,12522
|
|
318
320
|
angr/analyses/propagator/propagator.py,sha256=UZdkYuMk8yxUXu7KbQ2ck3gx2YBjgy6c-919JPb_IY4,13241
|
|
319
|
-
angr/analyses/propagator/top_checker_mixin.py,sha256=
|
|
321
|
+
angr/analyses/propagator/top_checker_mixin.py,sha256=Ket9h9TILsceIi3YoMbjeDF8PA6n3BelRDaL59vheMA,8852
|
|
320
322
|
angr/analyses/propagator/values.py,sha256=L41ue9PjPpA_tEe8YlTwv3ly9o3Sbo8uQESALfbUr4c,2026
|
|
321
323
|
angr/analyses/propagator/vex_vars.py,sha256=PRZOccwfdNRqEywPU-Mor3LGhakM5ItK1lRfay_T8vY,1462
|
|
322
|
-
angr/analyses/reaching_definitions/__init__.py,sha256=
|
|
324
|
+
angr/analyses/reaching_definitions/__init__.py,sha256=lqe-S7Jl9ZlCGgJT0kUZtNMLzmySokDz72v0pQBHh4w,2060
|
|
323
325
|
angr/analyses/reaching_definitions/call_trace.py,sha256=osabHpgiV-dvifwej3mwOxckeZmG6JIXb6FDSCFzfVI,2170
|
|
324
|
-
angr/analyses/reaching_definitions/dep_graph.py,sha256=
|
|
326
|
+
angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquqg0_u4TMBbKVEupJrL4,15554
|
|
325
327
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=BvLsafjUOf5N0aoDYFb0IAzBKIWF0DzYRZVYZd8Bjfc,45861
|
|
326
|
-
angr/analyses/reaching_definitions/engine_vex.py,sha256=
|
|
328
|
+
angr/analyses/reaching_definitions/engine_vex.py,sha256=mFpp5EXD90l52yVjah4Xl07eva-U-uOAMsuVR4lvmcw,45033
|
|
327
329
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
328
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
330
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=WalA9vdRQiHAR4UjR9x_AsHDu6UMcHlk-Gx19P8HbWI,28562
|
|
329
331
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
330
332
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
331
|
-
angr/analyses/reaching_definitions/rd_state.py,sha256=
|
|
332
|
-
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=
|
|
333
|
+
angr/analyses/reaching_definitions/rd_state.py,sha256=S_Qr1xYPFFVEKrL5IXohdnZOd_9ewcfHqwaQOAtTMw4,22748
|
|
334
|
+
angr/analyses/reaching_definitions/reaching_definitions.py,sha256=ubV8dA0mGWAkrbFQJ7LcXoF5o1K_p2F5VdnGC14jQZI,23703
|
|
333
335
|
angr/analyses/reaching_definitions/subject.py,sha256=LxfEi_uko0KJixwFMWMy79l7QW4ZMEzZ6ftIzsrC8pw,2005
|
|
334
336
|
angr/analyses/reaching_definitions/function_handler_library/__init__.py,sha256=elHg3doPsR68R3mZJM85qmDhy2OaCc347O-RaUaTDqY,458
|
|
335
337
|
angr/analyses/reaching_definitions/function_handler_library/stdio.py,sha256=To3dKtjqRbtqcJhybbhuQF_uxBXg4JX-A0601SsftRQ,11370
|
|
@@ -337,15 +339,15 @@ angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=5PW
|
|
|
337
339
|
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=14gNFX-oH8zVmfnyILklXbHAkxmsWcNT0YkYDSdHMo8,5047
|
|
338
340
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
339
341
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
340
|
-
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=
|
|
341
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
342
|
-
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=
|
|
342
|
+
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=8BZnpZpw0QaqixqH5JHKf2VcLa8Ct3-40D-JWiDWxFA,5330
|
|
343
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=xGcRtLXLPCHy0GRrum6zhj8bBpAdR5kfW9rlAknvH9A,12733
|
|
344
|
+
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=4J9dIyklZodWAn1DGzMflNRwFuprhS2mwM1ud_yAK0c,7815
|
|
343
345
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
344
346
|
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
345
347
|
angr/analyses/typehoon/lifter.py,sha256=iLl9F7RZtyth3qEeTvJGyvrKxrmaLn8LxS9DUbkoz4k,2823
|
|
346
|
-
angr/analyses/typehoon/simple_solver.py,sha256=
|
|
348
|
+
angr/analyses/typehoon/simple_solver.py,sha256=mDjbuMkZ0UBkcr99J3ZY_CTLbJmciyRMdPNBaM2J0-I,51708
|
|
347
349
|
angr/analyses/typehoon/translator.py,sha256=9PV9M8LgmVYMBSmLutYU5irzHoGHMYeLGVYRUpiJFKE,9590
|
|
348
|
-
angr/analyses/typehoon/typeconsts.py,sha256=
|
|
350
|
+
angr/analyses/typehoon/typeconsts.py,sha256=cM4IbG8be3X_WidJ94tDSKOjEObw82V6zOb8ADvqKzw,7684
|
|
349
351
|
angr/analyses/typehoon/typehoon.py,sha256=X7K9OT02yzTueXFPaFFoXGSsJOcPwtG1Jwz9mwIiF3w,9423
|
|
350
352
|
angr/analyses/typehoon/typevars.py,sha256=InCSzckZ7scqO-0y24keae_LkvcDUBOY0usyBpE0i_8,16181
|
|
351
353
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
@@ -354,10 +356,10 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
354
356
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
355
357
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
356
358
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
357
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
358
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
359
|
-
angr/analyses/variable_recovery/engine_vex.py,sha256=
|
|
360
|
-
angr/analyses/variable_recovery/irsb_scanner.py,sha256=
|
|
359
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=NJSTLRLVjkS1JHVB9WEjBzYHiOQ3SV2kD4znrEvSuRc,31888
|
|
360
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=Vx7yhGDJXyFoJziV31PzE9rRO6JMVhLtpHhzS8SoRm4,51428
|
|
361
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=jQEM7ruKhjQczkKqWcvpl5dVig-B6KyUiS_KuQrRaUs,20644
|
|
362
|
+
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
361
363
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
362
364
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=cJsc64ev_UmWTb2KNTdRF3HtpZyh4J2CEgnUAlH2MVg,15181
|
|
363
365
|
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=FdUYHFVRHFA5nCUIOUl4_HgvRSSpQ7w8nD3gRovKp_0,26730
|
|
@@ -391,28 +393,28 @@ angr/concretization_strategies/signed_add.py,sha256=kLIkHDjlhY6QoRj3g8gzY8y3bV3W
|
|
|
391
393
|
angr/concretization_strategies/single.py,sha256=VFTkSrCXXK367e38rHEwqo0e8oGJoytXnJ8u02_XSPA,418
|
|
392
394
|
angr/concretization_strategies/solutions.py,sha256=nGsRdjgmUPiJplktGYzKdJE_6H3J0svwsBIn_y77hgY,571
|
|
393
395
|
angr/concretization_strategies/unlimited_range.py,sha256=fdQ54qrJ2nj47AKJPw6yuiDsemFRfJ35UsOk17NbC1Y,569
|
|
394
|
-
angr/distributed/__init__.py,sha256=
|
|
396
|
+
angr/distributed/__init__.py,sha256=KbEuL2qYp5UN8c0mv_38rfZefTvvvtMkp6_ejWVFpOQ,204
|
|
395
397
|
angr/distributed/server.py,sha256=g3STpFQ48AScjXciwCt1sGE-qWAvi3GHwb8tdScL1CE,6645
|
|
396
398
|
angr/distributed/worker.py,sha256=MZVlxC9ksC6xUG2fy5h08Vv9R8RiG7QBQIomPYdFIJs,6065
|
|
397
|
-
angr/engines/__init__.py,sha256=
|
|
398
|
-
angr/engines/engine.py,sha256=
|
|
399
|
-
angr/engines/failure.py,sha256=
|
|
400
|
-
angr/engines/hook.py,sha256=
|
|
401
|
-
angr/engines/procedure.py,sha256=
|
|
402
|
-
angr/engines/successors.py,sha256=
|
|
403
|
-
angr/engines/syscall.py,sha256=
|
|
404
|
-
angr/engines/unicorn.py,sha256=
|
|
399
|
+
angr/engines/__init__.py,sha256=_3oRkiTrPO7QPiCg3qXymt4o9ZAOrAHt5pdfjkp3W9k,1661
|
|
400
|
+
angr/engines/engine.py,sha256=2kwOT-sbxKXAVX2PmsPTr8Ax36Vxq6hkRdDKaITBQNc,657
|
|
401
|
+
angr/engines/failure.py,sha256=redqmkSuJoIc828hpmX3CTk4EqQ-PeEn7MK2uIqSAc0,1040
|
|
402
|
+
angr/engines/hook.py,sha256=iIiy4sTtWrAzKeg95DjocuvmXz5bvvLCDYGOUAGphrY,2587
|
|
403
|
+
angr/engines/procedure.py,sha256=8kgFH56nkqSWm0p1apuGBaFngl-4BnAzE0bXhq9mc6Y,2561
|
|
404
|
+
angr/engines/successors.py,sha256=oQCW7Knxb4zz7EP6Mi6RrRNrwuhbv5fnX8UL76nn0sY,29501
|
|
405
|
+
angr/engines/syscall.py,sha256=7wYTriURsDTTi3PEBj4u3ZWDi7RHBV-gRrxTRxwMAVk,2166
|
|
406
|
+
angr/engines/unicorn.py,sha256=fq2akQ4dVFAWqek0Yr4JTaTJWwp5vICiSQ7Sg4wuDJE,24533
|
|
405
407
|
angr/engines/light/__init__.py,sha256=-634kaOlcs8ZAsMNtOML7FXP3svyZIrJb3ikq0isFv0,494
|
|
406
408
|
angr/engines/light/data.py,sha256=3bvC-7e6isb4aGM7IrdpZelJDSWQ0KflC-oNpCDT7tI,21243
|
|
407
|
-
angr/engines/light/engine.py,sha256=
|
|
409
|
+
angr/engines/light/engine.py,sha256=uzueKHzMkgcKP7dJvuN5wT-FeEIQnPBOCBfzJbGtLe8,45936
|
|
408
410
|
angr/engines/pcode/__init__.py,sha256=KWBnZnLYR3qANzXvxOt3XJq6cR57mQeNvugPBh7gr8s,195
|
|
409
411
|
angr/engines/pcode/behavior.py,sha256=ycNNTNHlCJFG6fPtOwRHbI3c0fkY5pYyPA--k3Kz-WY,29406
|
|
410
412
|
angr/engines/pcode/cc.py,sha256=brVglfSNnpDbRRcG-KO9EZ5NMMlmtDzP1n4kap7gKRY,3236
|
|
411
|
-
angr/engines/pcode/emulate.py,sha256=
|
|
412
|
-
angr/engines/pcode/engine.py,sha256=
|
|
413
|
-
angr/engines/pcode/lifter.py,sha256=
|
|
413
|
+
angr/engines/pcode/emulate.py,sha256=36RgLy9bmpB3r_RCyDh3iudhKyaaBtlvLYPf3X1LlOA,16732
|
|
414
|
+
angr/engines/pcode/engine.py,sha256=aFVvBYkVzZ8A5NkC2SblDU6Mlfk0ioVn7xDhp0iG8-8,9930
|
|
415
|
+
angr/engines/pcode/lifter.py,sha256=Nx7dMzovx76oIJZGWSSiYcHagqtw7DNEsdgh6llJyxU,52231
|
|
414
416
|
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
415
|
-
angr/engines/soot/engine.py,sha256=
|
|
417
|
+
angr/engines/soot/engine.py,sha256=rHKbnO9YBOAd1DJ-a33vAMseFt_b3iDhArTFdgmyVsc,17065
|
|
416
418
|
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
417
419
|
angr/engines/soot/field_dispatcher.py,sha256=WelL0r0f2hSUki4Xw0myHlzvnzqhnN9l2JyByJsB-2Q,1893
|
|
418
420
|
angr/engines/soot/method_dispatcher.py,sha256=Ooj7DwtXDcgvw6Wt60Q7Z_Xj6lEKR79ncVW_HCZphkQ,1759
|
|
@@ -444,7 +446,7 @@ angr/engines/soot/statements/identity.py,sha256=d1ldd4tJiRPuh2TOTAkjfL72-lWmPino
|
|
|
444
446
|
angr/engines/soot/statements/if_.py,sha256=OZFSR5yojJzZjs63hF9yxGAcaIN4MqCOjWA84rbOE2s,603
|
|
445
447
|
angr/engines/soot/statements/invoke.py,sha256=HbR2ke7Kcrns8e3dzjxYoxEzm4UnWjQL_EY9Vz1BWTY,319
|
|
446
448
|
angr/engines/soot/statements/return_.py,sha256=4IIqto1nstQ-pGJYp8c7mrPRVyy41yeofQTqUcq9nUE,501
|
|
447
|
-
angr/engines/soot/statements/switch.py,sha256=
|
|
449
|
+
angr/engines/soot/statements/switch.py,sha256=dJrJ5-_dogvoAfzuYYWjDZn6o3p02AX9qgCtMn3WftA,1340
|
|
448
450
|
angr/engines/soot/statements/throw.py,sha256=k41dYR-h63tjJ1xC_0npo3pMBFaX0nJqRZ0vsHzJ5fU,397
|
|
449
451
|
angr/engines/soot/values/__init__.py,sha256=L3oz1NXDxvCTsdU8chpszGBuVIrWWSNS0LhHk0lrPhI,1101
|
|
450
452
|
angr/engines/soot/values/arrayref.py,sha256=lki_NAPesi8FM0glJI8qM2cja5K0BCSxtRdVSrTCljc,4405
|
|
@@ -457,7 +459,7 @@ angr/engines/soot/values/staticfieldref.py,sha256=fYucDqKryaZbCWm2iOSsVi7FdGRIm9
|
|
|
457
459
|
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
458
460
|
angr/engines/soot/values/thisref.py,sha256=ajwA1zOdoww0g866ubHkMNKFKwCWqjlmIYw6GcXgcNo,5790
|
|
459
461
|
angr/engines/vex/__init__.py,sha256=k8cIQpJO2Wv6erLCOa4boEywRcwlFOTgAgGP6wNQcwM,525
|
|
460
|
-
angr/engines/vex/lifter.py,sha256=
|
|
462
|
+
angr/engines/vex/lifter.py,sha256=BqeajzzpLL32nmGaszWASBPDhluhTec2m3ods1ZTIIo,17207
|
|
461
463
|
angr/engines/vex/claripy/__init__.py,sha256=4B8H1VOHrrKJMjAXZkZ0r_02issFP_bxDJJMw50yVe4,109
|
|
462
464
|
angr/engines/vex/claripy/ccall.py,sha256=Q8u0DOsjkr-4PHgnpciWGocm4q783c9n4CgzuUAY-J4,81744
|
|
463
465
|
angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8ElSuJcFzNQ,4971
|
|
@@ -466,12 +468,12 @@ angr/engines/vex/heavy/__init__.py,sha256=XkIvjUOyEY9XN_zjM3ozzdSDqbMJHGm1Xbehwh
|
|
|
466
468
|
angr/engines/vex/heavy/actions.py,sha256=Q08wb2TK5HfDduAf8PRXY58h8iIOeCuArNzALzIf0Tk,8668
|
|
467
469
|
angr/engines/vex/heavy/concretizers.py,sha256=2xQYLXmugpJWIUjUrMnall2ewX05kTdOYLWjediaf6Q,14433
|
|
468
470
|
angr/engines/vex/heavy/dirty.py,sha256=WXJsC6KBotTdNCn64Zl2GiU_q_YK-QNu4f7RfG4d_qc,18719
|
|
469
|
-
angr/engines/vex/heavy/heavy.py,sha256=
|
|
471
|
+
angr/engines/vex/heavy/heavy.py,sha256=tbLzoyzKKTTfhqxT_VUR0ANkcRwCaF-Cj9UvHuLS1EU,15571
|
|
470
472
|
angr/engines/vex/heavy/inspect.py,sha256=2sFdCnlhC_5Ugrju7uhAmY79lomfNLdl-o4B4mjlfjg,2368
|
|
471
473
|
angr/engines/vex/heavy/resilience.py,sha256=QhGEQztITk1STChDxMWZoOSQuHXxExyW_wdWETaOpl0,3784
|
|
472
474
|
angr/engines/vex/heavy/super_fastpath.py,sha256=jOf8AF3UlL9yc8K6D9Q5qw88Eez0B1ZwG_AA0rNDhQg,1209
|
|
473
475
|
angr/engines/vex/light/__init__.py,sha256=U31OCY_B_kjtpewghpiFa7mYNBGNVj6CoeOiKAhUUkE,224
|
|
474
|
-
angr/engines/vex/light/light.py,sha256=
|
|
476
|
+
angr/engines/vex/light/light.py,sha256=YBBUOIJrE8YkbW_JNBVyjqpwVymsf1mOuqYl6bpUE_0,21685
|
|
475
477
|
angr/engines/vex/light/resilience.py,sha256=WC8HuIK-Zb6YFPdXqAlY_A8ocF_DPutO8gPu24xBtVQ,2037
|
|
476
478
|
angr/engines/vex/light/slicing.py,sha256=JtUtOeE9h-xBtrrVvY9T8ttYG-T4cllhRyR6zUcxiG4,2009
|
|
477
479
|
angr/exploration_techniques/__init__.py,sha256=5LJEn_hYBNxcMA_gnMFU_fkGp4NBRowQPVWpJTqF0pM,1390
|
|
@@ -509,15 +511,15 @@ angr/knowledge_plugins/custom_strings.py,sha256=5qYAvmcm9BkTA247hZngDaHHrO9iIipY
|
|
|
509
511
|
angr/knowledge_plugins/data.py,sha256=u2Is51L6Opp4eeWkpO_ss8WfXgceK5AUa_BlnPcZXmk,874
|
|
510
512
|
angr/knowledge_plugins/debug_variables.py,sha256=pxiY6l0OPX3y2ZEcCGu-vJCGfw60tiPvkjdDFE9Z4uM,8075
|
|
511
513
|
angr/knowledge_plugins/indirect_jumps.py,sha256=VlIDWeU3xZyTAp1qSYyZxtusz2idxa1vrlLQmGWlkHA,1034
|
|
512
|
-
angr/knowledge_plugins/labels.py,sha256=
|
|
513
|
-
angr/knowledge_plugins/obfuscations.py,sha256=
|
|
514
|
+
angr/knowledge_plugins/labels.py,sha256=Q7BTpBWRfJl3vxtd0vci91EA3KXiIwLNPyO5UQh6QEA,3156
|
|
515
|
+
angr/knowledge_plugins/obfuscations.py,sha256=n7qPreGLXJf2pADtbonv8JToKL_9IQCYfqGmSyV_3Y4,1465
|
|
514
516
|
angr/knowledge_plugins/patches.py,sha256=tPjKI2GloTaWcA96u0yp75956HUkqOfsvusitEeWmGE,4335
|
|
515
517
|
angr/knowledge_plugins/plugin.py,sha256=8tPrsgo1hsZG3ifXs4mWsKkeyB03ubfZdY5YArWw9-Q,766
|
|
516
518
|
angr/knowledge_plugins/structured_code.py,sha256=9IKRF1Pb7E0eBz0uMK36Pk8HL0fmI7JqVaeihu7uiRQ,2167
|
|
517
519
|
angr/knowledge_plugins/types.py,sha256=EjskCalakpsUi4CKvjrP530VsWFBGkM4xmPbGN2ymRQ,2076
|
|
518
520
|
angr/knowledge_plugins/cfg/__init__.py,sha256=oU07YZ4TIsoje8qr6nw_nM2NXizEGKuulD1RDxk4PWI,418
|
|
519
521
|
angr/knowledge_plugins/cfg/cfg_manager.py,sha256=QGXCsdoLiH_vW7LP1EWGLlRVlMSqAM06l6qWq7uxQJU,2651
|
|
520
|
-
angr/knowledge_plugins/cfg/cfg_model.py,sha256=
|
|
522
|
+
angr/knowledge_plugins/cfg/cfg_model.py,sha256=Z5HOM7xh285gF5DGmQGRSWWD9KJyjXVWLvl0i521OkA,41722
|
|
521
523
|
angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWBsLonpNpLA,17183
|
|
522
524
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
523
525
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
@@ -527,13 +529,13 @@ angr/knowledge_plugins/functions/function_manager.py,sha256=gdXZY5__a8c_ItQoDkJq
|
|
|
527
529
|
angr/knowledge_plugins/functions/function_parser.py,sha256=Ma_51hPet3iVJgMtBhKaT48CcNnxCNv2ys5oMrqJ3bw,11821
|
|
528
530
|
angr/knowledge_plugins/functions/soot_function.py,sha256=lYMe4qbkhAkXqGHTVb0-RM_kB8xWYUocuioK7UmKZgQ,4847
|
|
529
531
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
530
|
-
angr/knowledge_plugins/key_definitions/atoms.py,sha256=
|
|
532
|
+
angr/knowledge_plugins/key_definitions/atoms.py,sha256=ydXrPGPCFSMk1JR24qZfPy1xAVOAsc2Isc-QoZPm8Kg,11133
|
|
531
533
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=i-44XCfMyS2pK8AwW2rL0prhtxvsWB64E9pm4eDSUcY,673
|
|
532
534
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=AAePJW3BYV0Ju3ZFdqVJdQebPAkB1ASdTiuU9sRqzn4,8574
|
|
533
535
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
534
536
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
535
537
|
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=IVmEzhaFll5uNSW8mVVcOuFyoNvUbcU58dYd-TlNLxs,3310
|
|
536
|
-
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256
|
|
538
|
+
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=IAoU_k_vx4AOHdXqv88FQv30AyFhzUNZkn9zwiehJ38,38572
|
|
537
539
|
angr/knowledge_plugins/key_definitions/liveness.py,sha256=yq_-ztA1jjCSOZlYBjM3HPDs7Nhbml1F2q1MeFGj15w,6958
|
|
538
540
|
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
539
541
|
angr/knowledge_plugins/key_definitions/tag.py,sha256=QWtBe5yuMei6t2NRPwolVyUa1XyY2khMeU6pQwb66iQ,1710
|
|
@@ -550,7 +552,7 @@ angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuB
|
|
|
550
552
|
angr/knowledge_plugins/variables/variable_manager.py,sha256=Uz4X7l3MGs5oSymVBBAFZBr-eqpi1V0Dxg4b58pEA8M,49996
|
|
551
553
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
552
554
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
553
|
-
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=
|
|
555
|
+
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
554
556
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
555
557
|
angr/lib/angr_native.so,sha256=i0Vw6OFE8xuQkW5z3YXPgUfAeZ1glvoFOEDz0pP8Kn8,24466040
|
|
556
558
|
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
@@ -1261,7 +1263,7 @@ angr/state_plugins/libc.py,sha256=aQaeS1IqcKnLw2PDZngoxwtJRx9FTXNLjkkbA-OeDzY,23
|
|
|
1261
1263
|
angr/state_plugins/light_registers.py,sha256=R1QR_WWP9hvHP2iH-MMToG89h-LF21LG1mdOapNuWHc,6695
|
|
1262
1264
|
angr/state_plugins/log.py,sha256=hTx4IF7BVW47pq9ZdMRlDmh4O9Y2pyecnq9Ey5PBgME,2400
|
|
1263
1265
|
angr/state_plugins/loop_data.py,sha256=GAyGWwgmh914OPnxqIZ4BOGaNvlWmrHTxC136I7kYk8,4243
|
|
1264
|
-
angr/state_plugins/plugin.py,sha256=
|
|
1266
|
+
angr/state_plugins/plugin.py,sha256=E2hqjR-XfS-aQRg2fedkqvmo6w3Fu84LTOIWE53OF9s,6731
|
|
1265
1267
|
angr/state_plugins/posix.py,sha256=p2TjAl9k_CcmTS1-6QhKdM2ymBYAH2wnNW_t5oinZQ0,26774
|
|
1266
1268
|
angr/state_plugins/preconstrainer.py,sha256=Y25dH4-rVh2fKAL1Ks2_k4KVkcRtrmWg_UXV-i0PQkU,8066
|
|
1267
1269
|
angr/state_plugins/scratch.py,sha256=cq1kp8OBLwKNuBvaqAPylyDvw5whjL1A353R36UGK1Y,6210
|
|
@@ -1297,7 +1299,7 @@ angr/storage/memory_mixins/hex_dumper_mixin.py,sha256=YqP0r9-HsQd1GXx3Us5umSkBit
|
|
|
1297
1299
|
angr/storage/memory_mixins/javavm_memory_mixin.py,sha256=ZNG9IrafrHITS_LCLidt5_KnVbuvcYpFTlXpYHP-GzI,15452
|
|
1298
1300
|
angr/storage/memory_mixins/keyvalue_memory_mixin.py,sha256=tqjpvMaGyXeKIPTO669qMhKgFwQac2h53AvpRASi3fM,1195
|
|
1299
1301
|
angr/storage/memory_mixins/label_merger_mixin.py,sha256=zPCM7I7zEgFzk3pwqeFKFs_clv5qMBaoPnuHxRKv4dY,897
|
|
1300
|
-
angr/storage/memory_mixins/memory_mixin.py,sha256=
|
|
1302
|
+
angr/storage/memory_mixins/memory_mixin.py,sha256=ixxUxyqD9cIGQ2yxDN6GaGhOrPh_uqwG9sMjGvf-xNA,6481
|
|
1301
1303
|
angr/storage/memory_mixins/multi_value_merger_mixin.py,sha256=ubmdwqxuQVL9LheJ9u_fjfira9yRaRB-Ibv-YQbpbmU,3310
|
|
1302
1304
|
angr/storage/memory_mixins/name_resolution_mixin.py,sha256=GZkWxceMhP-e-iBGBilK6JgEjdBvUSPyd_Zi_4KZQxs,3432
|
|
1303
1305
|
angr/storage/memory_mixins/simple_interface_mixin.py,sha256=isJ3_vuElWtLTW7MxweHs5WJOuawr1LmLlS7-yakWd4,2576
|
|
@@ -1321,7 +1323,7 @@ angr/storage/memory_mixins/paged_memory/pages/cooperation.py,sha256=1-gi9LooOPxY
|
|
|
1321
1323
|
angr/storage/memory_mixins/paged_memory/pages/history_tracking_mixin.py,sha256=PZnWHtzOWeekHQ--JgGXPn5AGDqYS40LvpkwP9I-w7A,3037
|
|
1322
1324
|
angr/storage/memory_mixins/paged_memory/pages/ispo_mixin.py,sha256=MIYF_F_WprsdRi9gQdLAiU-UfwyrSCAfiVNccpWyiA8,2074
|
|
1323
1325
|
angr/storage/memory_mixins/paged_memory/pages/list_page.py,sha256=dAZIA0Z7tM5ZDQPtmkQ7OsUHq6bTqWPl_NcIj0RO7X0,14421
|
|
1324
|
-
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=
|
|
1326
|
+
angr/storage/memory_mixins/paged_memory/pages/multi_values.py,sha256=aeKBWosclmNKl0wV6ST5ECATDjUz2dbWPkCpZCY_ws4,13230
|
|
1325
1327
|
angr/storage/memory_mixins/paged_memory/pages/mv_list_page.py,sha256=vzvo3g8JaL7pIuaQyseF6-bAC-oXubg-ospi4vMZxi4,16947
|
|
1326
1328
|
angr/storage/memory_mixins/paged_memory/pages/permissions_mixin.py,sha256=1RKRsZE2xn4hta1kTT0p6n4WTduQJKiPqhipN0Xi8p8,1002
|
|
1327
1329
|
angr/storage/memory_mixins/paged_memory/pages/refcount_mixin.py,sha256=8sAIQgcZrMefCT9_DmToiF71SGFe1YkTEW5rJ6fZ7qI,1728
|
|
@@ -1356,12 +1358,12 @@ angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
|
1356
1358
|
angr/utils/segment_list.py,sha256=DulfCDdNETMehseRey64FkjmORQvoSyVd9eRZ4sQ7tw,21065
|
|
1357
1359
|
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1358
1360
|
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1359
|
-
angr/utils/ssa/__init__.py,sha256=
|
|
1361
|
+
angr/utils/ssa/__init__.py,sha256=F7Z7BBSwFhsUa0aXKaVWgo_eOcZFy0CSyHP2AoG9ms0,13298
|
|
1360
1362
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1361
1363
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1362
|
-
angr-9.2.
|
|
1363
|
-
angr-9.2.
|
|
1364
|
-
angr-9.2.
|
|
1365
|
-
angr-9.2.
|
|
1366
|
-
angr-9.2.
|
|
1367
|
-
angr-9.2.
|
|
1364
|
+
angr-9.2.140.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1365
|
+
angr-9.2.140.dist-info/METADATA,sha256=kP93x9cj7cUsV-HIiI2Egq4hDSk_hZr49ALrPDctHM4,4762
|
|
1366
|
+
angr-9.2.140.dist-info/WHEEL,sha256=q0csfyxC0CgL_VbODy1dAROUKOBO6j0wA7STVVTEknI,108
|
|
1367
|
+
angr-9.2.140.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1368
|
+
angr-9.2.140.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1369
|
+
angr-9.2.140.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|