angr 9.2.140__py3-none-manylinux2014_x86_64.whl → 9.2.141__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 +88 -32
- angr/analyses/calling_convention/fact_collector.py +44 -18
- angr/analyses/calling_convention/utils.py +3 -1
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +9 -8
- angr/analyses/decompiler/ail_simplifier.py +48 -20
- angr/analyses/decompiler/callsite_maker.py +24 -11
- angr/analyses/decompiler/clinic.py +10 -0
- angr/analyses/decompiler/decompiler.py +1 -0
- angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py +3 -1
- angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +21 -2
- angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py +84 -15
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +76 -1
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +51 -7
- angr/analyses/decompiler/peephole_optimizations/eager_eval.py +44 -7
- angr/analyses/decompiler/region_identifier.py +6 -4
- angr/analyses/decompiler/region_simplifiers/expr_folding.py +32 -18
- angr/analyses/decompiler/region_simplifiers/region_simplifier.py +4 -1
- angr/analyses/decompiler/ssailification/rewriting.py +23 -15
- angr/analyses/decompiler/ssailification/rewriting_engine.py +105 -24
- angr/analyses/decompiler/ssailification/ssailification.py +22 -14
- angr/analyses/decompiler/structured_codegen/c.py +73 -137
- angr/analyses/decompiler/structuring/dream.py +1 -1
- angr/analyses/decompiler/structuring/phoenix.py +6 -1
- angr/analyses/decompiler/structuring/structurer_base.py +2 -1
- angr/analyses/decompiler/utils.py +46 -20
- angr/analyses/s_reaching_definitions/s_rda_view.py +43 -25
- angr/analyses/variable_recovery/engine_ail.py +1 -1
- angr/analyses/variable_recovery/engine_vex.py +20 -4
- angr/calling_conventions.py +15 -10
- angr/factory.py +8 -3
- angr/knowledge_plugins/variables/variable_manager.py +7 -5
- angr/simos/simos.py +3 -1
- angr/utils/types.py +48 -0
- {angr-9.2.140.dist-info → angr-9.2.141.dist-info}/METADATA +6 -6
- {angr-9.2.140.dist-info → angr-9.2.141.dist-info}/RECORD +40 -39
- {angr-9.2.140.dist-info → angr-9.2.141.dist-info}/LICENSE +0 -0
- {angr-9.2.140.dist-info → angr-9.2.141.dist-info}/WHEEL +0 -0
- {angr-9.2.140.dist-info → angr-9.2.141.dist-info}/entry_points.txt +0 -0
- {angr-9.2.140.dist-info → angr-9.2.141.dist-info}/top_level.txt +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=KVFdWbPB3RtU7nrCMV7KAUUbUCm39DIpkcdO9DnXcOI,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
5
|
angr/block.py,sha256=34rsSr800m0CM1cqniusdCF8GMVc1yXJVUVKu7cYfBE,14679
|
|
6
6
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=TIcmHhJFHhy2LL7oml5l6wSvCwMzQYv9PwhpnU620f0,97042
|
|
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=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
|
|
@@ -65,9 +65,9 @@ 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=KUgOHxqfURBy0W_798XaWTAAnkrw_XZ8tDxYozjTVp0,43207
|
|
69
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=lbTYYARJiLSDcGOH-qvYteqP1bLtuvc8YiCGuLlXdKY,25741
|
|
70
|
+
angr/analyses/calling_convention/utils.py,sha256=WjpagYFRgJkukNzGN-H7N_vuIxMGJmgHTLvRn9Ccf4I,2071
|
|
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
|
|
@@ -83,7 +83,7 @@ angr/analyses/cfg/indirect_jump_resolvers/amd64_pe_iat.py,sha256=cE713VrHJdNZrB9
|
|
|
83
83
|
angr/analyses/cfg/indirect_jump_resolvers/arm_elf_fast.py,sha256=AIA6YeWlzBAOwhdDolHfxoEWvSsvNPo73KDRIjbHdtY,5202
|
|
84
84
|
angr/analyses/cfg/indirect_jump_resolvers/const_resolver.py,sha256=grOUivGV9PtVPnzIiPCafV1_g9t8apd738otwYGFWf4,7244
|
|
85
85
|
angr/analyses/cfg/indirect_jump_resolvers/default_resolvers.py,sha256=AuIdMPP_52Y6BgrwkofnWBkdoQCGeG0q6BYV9pdgoLg,1694
|
|
86
|
-
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=
|
|
86
|
+
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=wApoEkuMrkylxeg2rqGdyaJubNz1TdvLagHRaFsLvmQ,106951
|
|
87
87
|
angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py,sha256=jmCiDkloyyqb6iRfjXBlu2N9uwYhiqeiXWhnUXW27dU,2950
|
|
88
88
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
89
89
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_got.py,sha256=DT1tomUTCXmhD8N_V4KMeyS-YecDlR7f4kOANiKyGeI,5213
|
|
@@ -100,17 +100,17 @@ 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=IZOdg5JVwYc-CwM2YpkHEYOxYbEHPypoMC1ZVYaahzo,75706
|
|
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
107
|
angr/analyses/decompiler/block_simplifier.py,sha256=Pl7qh9ODO41iXkBsKuB8-1gtjnqr6Qc1b8So2MbrTLM,13537
|
|
108
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
109
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
108
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=eWO19uHZVUs3i4Bu8iGSjuJkHZ4CleB0RNA_zTUJByw,22168
|
|
109
|
+
angr/analyses/decompiler/clinic.py,sha256=j_S6x2qOQ1c5ROgSb00YHk1B_gs821fEo8B1iF5rrww,129633
|
|
110
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=AuesTxLz8uh_XikaZ8MGnn_UseoDN5Z5sqwLH3AsNX0,29449
|
|
114
114
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
115
115
|
angr/analyses/decompiler/expression_narrower.py,sha256=bgTHxNljl3ghUmNMIdz8kpi4v7iMc8wQh508eCugBtc,10337
|
|
116
116
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
@@ -119,12 +119,12 @@ angr/analyses/decompiler/jump_target_collector.py,sha256=qR11VsIp6H1N-19xCdXMRs1
|
|
|
119
119
|
angr/analyses/decompiler/jumptable_entry_condition_rewriter.py,sha256=f_JyNiSZfoudElfl2kIzONoYCiosR4xYFOe8Q5SkvLg,2176
|
|
120
120
|
angr/analyses/decompiler/label_collector.py,sha256=JLaGuSZu-DdJMBTYOPt4QpWJ6UigOpsC5bgNANrSao4,798
|
|
121
121
|
angr/analyses/decompiler/redundant_label_remover.py,sha256=J9hpP3C_P08v84FjVU0q5Rmj5M1N9q3HKWSWsA2u7Yg,5879
|
|
122
|
-
angr/analyses/decompiler/region_identifier.py,sha256=
|
|
122
|
+
angr/analyses/decompiler/region_identifier.py,sha256=BghMcOXPKeXO8QA9wSiSgNSt7r5knI-C6BsY-rUplg0,47783
|
|
123
123
|
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
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=m9gBI-1BeSD_iAs5y2PQDLsRpGI6L4kcXAbZ-rWUsO4,39081
|
|
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
|
|
@@ -153,17 +153,17 @@ angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=yqW4Ba4
|
|
|
153
153
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
154
154
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=PiCFksceRfu0nPPSKfzTsMmrAJ1YaHMEjcuCHcaYbgM,16662
|
|
155
155
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
156
|
-
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=
|
|
156
|
+
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=q2ZOxKQUXUwQNEDjEnj-ji32f6n_XR8M82lr_0ImJdM,5079
|
|
157
157
|
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=_rqXGIs03Idkw7IOtxHhapQ-qCMO_mKlJ_FfHAM6TAo,24842
|
|
158
158
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
159
159
|
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=HoQTAvZ2-tmNrNjJ1GbR55nTC9O_wuKpJ7yNEfZBszQ,13471
|
|
160
|
-
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=
|
|
160
|
+
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=c1R5MgAmHgXDbIzn5LWUh32n9ZdcNlQXAZLVX5Yb21k,41993
|
|
161
161
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=BzgSGM39Uv1WAGPM831wLnKW8t-mw9tQoV07ZlxbU_Y,3379
|
|
162
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
162
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=rlAcQWaJuCOECgrBP0mbQRQ8hoDeg9YHp0H5nDtcUrk,25624
|
|
163
163
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=X6A252YhqUvT7A6J5NqCKBom2PRlh5NDHpAjXfNvBfg,7854
|
|
164
164
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
165
165
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
166
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
166
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=PFd6ChdUH08likSoFRvIXdvuUlH-lJ_ZYMZWbNHuoDA,27153
|
|
167
167
|
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=EgDtVm175NStVFcppjnTrlE-aP0F2oW0tgK3_kpp6xA,2054
|
|
168
168
|
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
169
169
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=wRa-_zwogSbqgxKu-apHp-fSMwuiBFrKgXa29BiY4YE,14422
|
|
@@ -174,7 +174,7 @@ angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha2
|
|
|
174
174
|
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=6NxaX2oT6BMkevb8xt9vlS3Jl-CmSK59F0FVab68B48,3088
|
|
175
175
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=hTeOdooVDZnBnjiAguD7_BS9YJru8rOiSHN3H0sdzcA,126
|
|
176
176
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=Trp6qkwO_L4oMfdX78ZOoplcIpLV4CV1k_ZimY2IvxA,21658
|
|
177
|
-
angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py,sha256=
|
|
177
|
+
angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_reverter.py,sha256=Pl5EVHWNc3_ljr-lAKVmpFC_IPBjre8dDQuwev_zsbI,52815
|
|
178
178
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
179
179
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=V5NDaCYuzoJl-i74JKKV4t9FihXsnmNbki7_4SxJfwo,4406
|
|
180
180
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=szGv6t397GDMIZbn_VS14tAndKUBRF4jYETUMvlVnyU,5145
|
|
@@ -200,7 +200,7 @@ angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KT
|
|
|
200
200
|
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=5ThmIgu38Un_N5AltnQtcTnoEnOT45HRu6NehB3rG5M,1713
|
|
201
201
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
202
202
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
203
|
-
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=
|
|
203
|
+
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=aIja9B01FP4RLlceu-4-TujUgqSWU1GYaQgNGAeoinM,17146
|
|
204
204
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=r39kiAST4tC-iInTuFgnek0KOljBS3AxS2wPvEpEB58,2044
|
|
205
205
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=40RcqWIMALxfA-LG-DN2N_yK5uW2HWF_x4AquCTMbNU,6245
|
|
206
206
|
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=wKj38t6sTd6wpbVpbPG7Nxiz9vU5K_TvL4sws04TsDk,4681
|
|
@@ -236,34 +236,34 @@ angr/analyses/decompiler/presets/preset.py,sha256=sTK5fJfx_Cdx0Gjn7y4bOrDp-2eFPe
|
|
|
236
236
|
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=BSD9osrReTEdapOMmyI1kFiN7AmE1EeJGLBV7i0u-Uc,117
|
|
237
237
|
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=qLs1LxEYHdPrh5c33IdkHJqtjBU7z4Sz6fxOK4Fn0Oc,3816
|
|
238
238
|
angr/analyses/decompiler/region_simplifiers/cascading_ifs.py,sha256=IgbSKemlJHlyGR6ANJlsPLMjCN262gJvytaqPi0EWuA,2594
|
|
239
|
-
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=
|
|
239
|
+
angr/analyses/decompiler/region_simplifiers/expr_folding.py,sha256=Eq7oOvO1N-yXNcCteKMIuplpYhha8IjnmPEBQ9ZCbVE,30941
|
|
240
240
|
angr/analyses/decompiler/region_simplifiers/goto.py,sha256=HKAh1m8WryAR2WMGjmFIvO6DOYymlA7sKRnKfbyJfvk,6100
|
|
241
241
|
angr/analyses/decompiler/region_simplifiers/if_.py,sha256=rLH5csZCB5-cCsWJh2SdvWLVqgGfnfi7YqQlE7M328I,4406
|
|
242
242
|
angr/analyses/decompiler/region_simplifiers/ifelse.py,sha256=rU01g103DJXtHBX72A2gbZJYlpVnmjLxL5Oo0FfjrVs,3808
|
|
243
243
|
angr/analyses/decompiler/region_simplifiers/loop.py,sha256=uKieYMvygDt8GhK1b_EjHTP064I1FTEZd6HIEntB0K8,6315
|
|
244
244
|
angr/analyses/decompiler/region_simplifiers/node_address_finder.py,sha256=LY7TH54eCZOqKW67b0OVfS_-35rRoHPhazdyB8Ng4vE,600
|
|
245
|
-
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=
|
|
245
|
+
angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=wiXPydW1g7-E-AxAPh9JA_tieQU4eX6o8gTFI_I9DuI,8958
|
|
246
246
|
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=sYhRG2kti3NZOZf5f94Z2eX9tunTAUrzT83KlkUyk8A,24900
|
|
247
247
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
248
248
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
249
|
-
angr/analyses/decompiler/ssailification/rewriting.py,sha256=
|
|
250
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
249
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=PMKTF5wHoFY5T_d9VxgVrLSM5lAC3vERSlI5fH31k30,13413
|
|
250
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=AFZRkOPbMoC9Vc0b4w88tRI6eYpxjCfNelJQ9jHRaXM,36827
|
|
251
251
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
252
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
252
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=neSRJZAB6ou3tZzgsDyLsGrsswtBBPF5QAZ3QPEwiMA,9851
|
|
253
253
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
254
254
|
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=fdYGD_032HZrtEBvphR6RgBUJgeNDpGzCpABpA-Zgdg,9804
|
|
255
255
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
256
256
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
257
257
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
258
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256
|
|
258
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=-dl23v0JehAMI2sllmzCX7aS4uVDLfxdYCuJUqLah2Y,141583
|
|
259
259
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
260
260
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
261
261
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
262
|
-
angr/analyses/decompiler/structuring/dream.py,sha256=
|
|
263
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
262
|
+
angr/analyses/decompiler/structuring/dream.py,sha256=WOvtyQ0ZRABfF2bSQz1kcB_X3KHCL4x3QrJA6YNbgUc,48720
|
|
263
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=56Hoavp0u229qgT9A6uudU1mO02cTjKc2AeYNApL8-k,137812
|
|
264
264
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=4lHkzsEDSGsiEHrAImaJ4cQOmoZes87_GDSzOby90Rc,7219
|
|
265
265
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
266
|
-
angr/analyses/decompiler/structuring/structurer_base.py,sha256=
|
|
266
|
+
angr/analyses/decompiler/structuring/structurer_base.py,sha256=3TBpv5gE7CfUrRd1TihDDqMVUJnMstO6v6PXJYAOlpA,47399
|
|
267
267
|
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x1lnHOSaOoQsXJQvHi0jnMe3SdaFUU9tY1mX0Sx6JUI,12318
|
|
268
268
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
269
269
|
angr/analyses/deobfuscator/api_obf_finder.py,sha256=Z7AzJVssE-ERfNlPSlQ1ng-xvfCfoG0_SLrRqZCqJ3I,13623
|
|
@@ -340,7 +340,7 @@ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=14g
|
|
|
340
340
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
341
341
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
342
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=
|
|
343
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=_eC3v9zOmouVwcC4jUep5_qLGbBLr89b3Kf9Yo5XDYI,13498
|
|
344
344
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=4J9dIyklZodWAn1DGzMflNRwFuprhS2mwM1ud_yAK0c,7815
|
|
345
345
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
346
346
|
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
@@ -356,9 +356,9 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
356
356
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
357
357
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
358
358
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
359
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
359
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=8L6Vtypw5v4HyFpUulUnfujZB1Rdn6Up-KfTe7zLPvI,31888
|
|
360
360
|
angr/analyses/variable_recovery/engine_base.py,sha256=Vx7yhGDJXyFoJziV31PzE9rRO6JMVhLtpHhzS8SoRm4,51428
|
|
361
|
-
angr/analyses/variable_recovery/engine_vex.py,sha256=
|
|
361
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
362
362
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
363
363
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
364
364
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=cJsc64ev_UmWTb2KNTdRF3HtpZyh4J2CEgnUAlH2MVg,15181
|
|
@@ -549,7 +549,7 @@ angr/knowledge_plugins/propagations/propagation_model.py,sha256=5ehnHl--YL_YLiOc
|
|
|
549
549
|
angr/knowledge_plugins/propagations/states.py,sha256=gl5PxihjdMtw9fc3nNSOa8D09B8RyahP22qTmdKe6wg,18737
|
|
550
550
|
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
551
551
|
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
552
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=
|
|
552
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=k2APZoXXRD6ZWD_VTvJ_e8rTtcAA7VbdEvip2r1Io7Y,50196
|
|
553
553
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
554
554
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
555
555
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
@@ -1243,7 +1243,7 @@ angr/simos/__init__.py,sha256=viflGa2m57GOjuWxFM80osoFZmGEGhA6Ot1ElVau6Xg,1002
|
|
|
1243
1243
|
angr/simos/cgc.py,sha256=qVWY3wLAjqrLR8rQMyGCLrroYIIHOwExn5DvPazE5GU,5589
|
|
1244
1244
|
angr/simos/javavm.py,sha256=xPhWuvSdDG-GskoPPrLRfoJGABQ8J3H6SjpH1VoZTUQ,20566
|
|
1245
1245
|
angr/simos/linux.py,sha256=VQY3zA_qQsbEPr2jFWOM6ffuSn7p0qtWKUjbyoGEb8w,23189
|
|
1246
|
-
angr/simos/simos.py,sha256=
|
|
1246
|
+
angr/simos/simos.py,sha256=VaTq686QdKwPSVbblXhbJH8CJmhhqtfOjGsHtPYtIUA,18145
|
|
1247
1247
|
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
1248
1248
|
angr/simos/userland.py,sha256=jvHdMocEJAlwrTjupubdGfD6snt_DpQ_pyHrIZyV7NE,7354
|
|
1249
1249
|
angr/simos/windows.py,sha256=7r9BntIvvg_3P61gk3m-im157GLapAOUZj5qRIKwvok,26058
|
|
@@ -1358,12 +1358,13 @@ angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
|
1358
1358
|
angr/utils/segment_list.py,sha256=DulfCDdNETMehseRey64FkjmORQvoSyVd9eRZ4sQ7tw,21065
|
|
1359
1359
|
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1360
1360
|
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1361
|
+
angr/utils/types.py,sha256=kBdsYfH51eepJm62d-ZKXtWMoJmRtMGTClL4UwM69Tk,1449
|
|
1361
1362
|
angr/utils/ssa/__init__.py,sha256=F7Z7BBSwFhsUa0aXKaVWgo_eOcZFy0CSyHP2AoG9ms0,13298
|
|
1362
1363
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1363
1364
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1364
|
-
angr-9.2.
|
|
1365
|
-
angr-9.2.
|
|
1366
|
-
angr-9.2.
|
|
1367
|
-
angr-9.2.
|
|
1368
|
-
angr-9.2.
|
|
1369
|
-
angr-9.2.
|
|
1365
|
+
angr-9.2.141.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1366
|
+
angr-9.2.141.dist-info/METADATA,sha256=8q4yiW0pXMDIba8kOtYvALG9NMMgR7zWq301B4dckEo,4762
|
|
1367
|
+
angr-9.2.141.dist-info/WHEEL,sha256=q0csfyxC0CgL_VbODy1dAROUKOBO6j0wA7STVVTEknI,108
|
|
1368
|
+
angr-9.2.141.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1369
|
+
angr-9.2.141.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1370
|
+
angr-9.2.141.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|