angr 9.2.136__py3-none-manylinux2014_x86_64.whl → 9.2.138__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 +2 -1
- angr/analyses/calling_convention/fact_collector.py +10 -2
- angr/analyses/cfg/cfg_base.py +3 -33
- angr/analyses/cfg/cfg_emulated.py +0 -103
- angr/analyses/cfg/cfg_fast.py +31 -12
- angr/analyses/cfg/indirect_jump_resolvers/jumptable.py +15 -0
- angr/analyses/class_identifier.py +1 -2
- angr/analyses/complete_calling_conventions.py +6 -3
- angr/analyses/decompiler/ail_simplifier.py +12 -1
- angr/analyses/decompiler/block_simplifier.py +2 -2
- angr/analyses/decompiler/ccall_rewriters/__init__.py +2 -0
- angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py +1 -1
- angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py +69 -0
- angr/analyses/decompiler/clinic.py +77 -65
- angr/analyses/decompiler/condition_processor.py +2 -0
- angr/analyses/decompiler/decompilation_options.py +10 -0
- angr/analyses/decompiler/decompiler.py +1 -0
- angr/analyses/decompiler/dephication/dephication_base.py +2 -0
- angr/analyses/decompiler/dephication/rewriting_engine.py +8 -6
- angr/analyses/decompiler/dephication/seqnode_dephication.py +10 -1
- angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py +2 -2
- angr/analyses/decompiler/optimization_passes/return_duplicator_base.py +1 -2
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py +21 -3
- angr/analyses/decompiler/sequence_walker.py +6 -2
- angr/analyses/decompiler/ssailification/rewriting.py +11 -1
- angr/analyses/decompiler/ssailification/rewriting_engine.py +56 -19
- angr/analyses/decompiler/ssailification/ssailification.py +13 -3
- angr/analyses/decompiler/ssailification/traversal.py +28 -2
- angr/analyses/decompiler/ssailification/traversal_state.py +6 -1
- angr/analyses/decompiler/structured_codegen/c.py +44 -21
- angr/analyses/decompiler/structuring/phoenix.py +117 -14
- angr/analyses/decompiler/utils.py +113 -8
- angr/analyses/reaching_definitions/function_handler.py +1 -1
- angr/analyses/s_liveness.py +5 -1
- angr/analyses/s_propagator.py +127 -28
- angr/analyses/s_reaching_definitions/s_rda_model.py +2 -1
- angr/analyses/s_reaching_definitions/s_rda_view.py +20 -1
- angr/analyses/s_reaching_definitions/s_reaching_definitions.py +11 -1
- angr/analyses/stack_pointer_tracker.py +26 -16
- angr/analyses/variable_recovery/engine_ail.py +19 -7
- angr/analyses/variable_recovery/engine_base.py +16 -14
- angr/analyses/variable_recovery/engine_vex.py +2 -2
- angr/analyses/variable_recovery/variable_recovery_fast.py +22 -1
- angr/block.py +59 -20
- angr/engines/pcode/emulate.py +1 -1
- angr/engines/pcode/lifter.py +31 -18
- angr/engines/soot/expressions/__init__.py +2 -4
- angr/engines/soot/statements/__init__.py +1 -2
- angr/engines/soot/values/__init__.py +1 -2
- angr/engines/successors.py +11 -6
- angr/engines/vex/lifter.py +9 -6
- angr/flirt/build_sig.py +8 -15
- angr/knowledge_plugins/functions/function.py +0 -6
- angr/knowledge_plugins/functions/soot_function.py +5 -8
- angr/knowledge_plugins/variables/variable_manager.py +16 -10
- angr/procedures/glibc/__libc_start_main.py +10 -3
- angr/utils/ssa/__init__.py +14 -1
- {angr-9.2.136.dist-info → angr-9.2.138.dist-info}/METADATA +7 -7
- {angr-9.2.136.dist-info → angr-9.2.138.dist-info}/RECORD +64 -63
- {angr-9.2.136.dist-info → angr-9.2.138.dist-info}/WHEEL +1 -1
- {angr-9.2.136.dist-info → angr-9.2.138.dist-info}/LICENSE +0 -0
- {angr-9.2.136.dist-info → angr-9.2.138.dist-info}/entry_points.txt +0 -0
- {angr-9.2.136.dist-info → angr-9.2.138.dist-info}/top_level.txt +0 -0
|
@@ -915,7 +915,7 @@ class VariableManagerInternal(Serializable):
|
|
|
915
915
|
# rename variables in a fixed order
|
|
916
916
|
var_ctr = count(0)
|
|
917
917
|
|
|
918
|
-
sorted_stack_variables = sorted(sorted_stack_variables, key=lambda v: v.offset)
|
|
918
|
+
sorted_stack_variables = sorted(sorted_stack_variables, key=lambda v: (v.offset, v.ident))
|
|
919
919
|
sorted_reg_variables = sorted(sorted_reg_variables, key=lambda v: _id_from_varident(v.ident))
|
|
920
920
|
|
|
921
921
|
# find variables that are likely only used by phi assignments
|
|
@@ -1033,7 +1033,7 @@ class VariableManagerInternal(Serializable):
|
|
|
1033
1033
|
Map SSA variables to a unified variable. Fill in self._unified_variables.
|
|
1034
1034
|
"""
|
|
1035
1035
|
|
|
1036
|
-
stack_vars:
|
|
1036
|
+
stack_vars: set[SimStackVariable] = set()
|
|
1037
1037
|
reg_vars: set[SimRegisterVariable] = set()
|
|
1038
1038
|
|
|
1039
1039
|
# unify stack variables based on their locations
|
|
@@ -1042,19 +1042,14 @@ class VariableManagerInternal(Serializable):
|
|
|
1042
1042
|
# do not unify twice
|
|
1043
1043
|
continue
|
|
1044
1044
|
if isinstance(v, SimStackVariable):
|
|
1045
|
-
stack_vars
|
|
1045
|
+
stack_vars.add(v)
|
|
1046
1046
|
elif isinstance(v, SimRegisterVariable):
|
|
1047
1047
|
reg_vars.add(v)
|
|
1048
1048
|
|
|
1049
|
-
for _, vs in stack_vars.items():
|
|
1050
|
-
unified = vs[0].copy()
|
|
1051
|
-
for v in vs:
|
|
1052
|
-
self.set_unified_variable(v, unified)
|
|
1053
|
-
|
|
1054
1049
|
# unify register variables based on phi nodes
|
|
1055
1050
|
graph = networkx.DiGraph() # an edge v1 -> v2 means v2 is the phi variable for v1
|
|
1056
1051
|
for v, subvs in self._phi_variables.items():
|
|
1057
|
-
if not isinstance(v, SimRegisterVariable):
|
|
1052
|
+
if not isinstance(v, (SimRegisterVariable, SimStackVariable)):
|
|
1058
1053
|
continue
|
|
1059
1054
|
for subv in subvs:
|
|
1060
1055
|
graph.add_edge(subv, v)
|
|
@@ -1086,10 +1081,21 @@ class VariableManagerInternal(Serializable):
|
|
|
1086
1081
|
self.set_unified_variable(v, unified)
|
|
1087
1082
|
for v in nodes:
|
|
1088
1083
|
reg_vars.discard(v)
|
|
1084
|
+
stack_vars.discard(v)
|
|
1089
1085
|
|
|
1090
|
-
|
|
1086
|
+
# deal with remaining variables
|
|
1087
|
+
for v in sorted(reg_vars, key=lambda v: v.ident):
|
|
1091
1088
|
self.set_unified_variable(v, v)
|
|
1092
1089
|
|
|
1090
|
+
stack_vars_by_offset: dict[int, list[SimStackVariable]] = defaultdict(list)
|
|
1091
|
+
for v in stack_vars:
|
|
1092
|
+
stack_vars_by_offset[v.offset].append(v)
|
|
1093
|
+
for vs in stack_vars_by_offset.values():
|
|
1094
|
+
vs = sorted(vs, key=lambda v: v.ident)
|
|
1095
|
+
unified = vs[0].copy()
|
|
1096
|
+
for v in vs:
|
|
1097
|
+
self.set_unified_variable(v, unified)
|
|
1098
|
+
|
|
1093
1099
|
def set_unified_variable(self, variable: SimVariable, unified: SimVariable) -> None:
|
|
1094
1100
|
"""
|
|
1095
1101
|
Set the unified variable for a given SSA variable.
|
|
@@ -251,11 +251,18 @@ class __libc_start_main(angr.SimProcedure):
|
|
|
251
251
|
args = cc.get_args(state, ty)
|
|
252
252
|
main, _, _, init, fini = self._extract_args(blank_state, *args)
|
|
253
253
|
|
|
254
|
-
|
|
255
|
-
|
|
254
|
+
# skip invalid results
|
|
255
|
+
result = [
|
|
256
256
|
{"address": main, "jumpkind": "Ijk_Call", "namehint": "main"},
|
|
257
|
-
{"address": fini, "jumpkind": "Ijk_Call", "namehint": "fini"},
|
|
258
257
|
]
|
|
258
|
+
if init.concrete and init.concrete_value != 0:
|
|
259
|
+
init_item = {"address": init, "jumpkind": "Ijk_Call", "namehint": "init"}
|
|
260
|
+
result.insert(0, init_item)
|
|
261
|
+
if fini.concrete and fini.concrete_value != 0:
|
|
262
|
+
fini_item = {"address": fini, "jumpkind": "Ijk_Call", "namehint": "fini"}
|
|
263
|
+
result.append(fini_item)
|
|
264
|
+
|
|
265
|
+
return result
|
|
259
266
|
|
|
260
267
|
@staticmethod
|
|
261
268
|
def _extract_args(state, main, argc, argv, init, fini):
|
angr/utils/ssa/__init__.py
CHANGED
|
@@ -4,7 +4,7 @@ from typing import Any, Literal, overload
|
|
|
4
4
|
|
|
5
5
|
import archinfo
|
|
6
6
|
from ailment import Expression, Block
|
|
7
|
-
from ailment.expression import VirtualVariable, Const, Phi, Tmp, Load, Register, StackBaseOffset, DirtyExpression
|
|
7
|
+
from ailment.expression import VirtualVariable, Const, Phi, Tmp, Load, Register, StackBaseOffset, DirtyExpression, ITE
|
|
8
8
|
from ailment.statement import Statement, Assignment, Call
|
|
9
9
|
from ailment.block_walker import AILBlockWalkerBase
|
|
10
10
|
|
|
@@ -213,12 +213,25 @@ def is_dephi_vvar(vvar: VirtualVariable) -> bool:
|
|
|
213
213
|
return vvar.varid == DEPHI_VVAR_REG_OFFSET
|
|
214
214
|
|
|
215
215
|
|
|
216
|
+
def has_ite_expr(expr: Expression) -> bool:
|
|
217
|
+
walker = AILBlacklistExprTypeWalker((ITE,))
|
|
218
|
+
walker.walk_expression(expr)
|
|
219
|
+
return walker.has_blacklisted_exprs
|
|
220
|
+
|
|
221
|
+
|
|
222
|
+
def has_ite_stmt(stmt: Statement) -> bool:
|
|
223
|
+
walker = AILBlacklistExprTypeWalker((ITE,))
|
|
224
|
+
walker.walk_statement(stmt)
|
|
225
|
+
return walker.has_blacklisted_exprs
|
|
226
|
+
|
|
227
|
+
|
|
216
228
|
__all__ = (
|
|
217
229
|
"VVarUsesCollector",
|
|
218
230
|
"get_tmp_deflocs",
|
|
219
231
|
"get_tmp_uselocs",
|
|
220
232
|
"get_vvar_deflocs",
|
|
221
233
|
"get_vvar_uselocs",
|
|
234
|
+
"has_ite_expr",
|
|
222
235
|
"is_const_and_vvar_assignment",
|
|
223
236
|
"is_const_assignment",
|
|
224
237
|
"is_const_vvar_load_assignment",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.138
|
|
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
|
Home-page: https://github.com/angr/angr
|
|
6
6
|
License: BSD-2-Clause
|
|
@@ -16,13 +16,13 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: CppHeaderParser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: ailment==9.2.
|
|
20
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: ailment==9.2.138
|
|
20
|
+
Requires-Dist: archinfo==9.2.138
|
|
21
21
|
Requires-Dist: cachetools
|
|
22
22
|
Requires-Dist: capstone==5.0.3
|
|
23
23
|
Requires-Dist: cffi>=1.14.0
|
|
24
|
-
Requires-Dist: claripy==9.2.
|
|
25
|
-
Requires-Dist: cle==9.2.
|
|
24
|
+
Requires-Dist: claripy==9.2.138
|
|
25
|
+
Requires-Dist: cle==9.2.138
|
|
26
26
|
Requires-Dist: itanium-demangler
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
28
|
Requires-Dist: nampa
|
|
@@ -31,7 +31,7 @@ Requires-Dist: protobuf>=5.28.2
|
|
|
31
31
|
Requires-Dist: psutil
|
|
32
32
|
Requires-Dist: pycparser>=2.18
|
|
33
33
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.138
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=_nG-5IzQOKO7IRjqlaLV4y3d44qO1Yzc1AzPa_MJOlo,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=nTIXI9H8kLrJUvAiuzrjTYD568YFvAzULrnaw7rj_sA,16469
|
|
6
6
|
angr/callable.py,sha256=ioy94hgdQLSqMwxPzYqWMIx2WCNzUwVxgm6BxRr64D0,6063
|
|
7
7
|
angr/calling_conventions.py,sha256=vIcUf0PtJ3Gq6Yipe8ytMFOExOZDk_indIhg5OLLUbU,93391
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
@@ -34,10 +34,10 @@ angr/analyses/bindiff.py,sha256=CD0NdjbE-ZanGYopPpSdBQm3DgE85jvl3yox5Nu0pR8,5137
|
|
|
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
|
|
37
|
-
angr/analyses/class_identifier.py,sha256=
|
|
37
|
+
angr/analyses/class_identifier.py,sha256=ORsFU2vWPQS2BgxxZZBhL5w_h6MnDTsccChyM5OyTpg,2948
|
|
38
38
|
angr/analyses/code_tagging.py,sha256=Gj7Ms24RnmhC9OD57gw7R6_c-pLfqSug-LVUMw_JmXE,3510
|
|
39
39
|
angr/analyses/codecave.py,sha256=k_dDhMN4wcq2bs5VrwpOv96OowQ7AbZSs6j5Z6YbIpk,2209
|
|
40
|
-
angr/analyses/complete_calling_conventions.py,sha256=
|
|
40
|
+
angr/analyses/complete_calling_conventions.py,sha256=8jBayawWeHumo-97R-Yz2IxeZJ1MCY4IrpKz_JCLcTc,19508
|
|
41
41
|
angr/analyses/congruency_check.py,sha256=QeYRrdrs_iluLLnKz3KUHkCTPRVl5PgM2T0ZXd786HA,16165
|
|
42
42
|
angr/analyses/datagraph_meta.py,sha256=Ng0jqLD5ucRn_fBXhYq3l6scs3kczRk6Sk-Sen1forc,3414
|
|
43
43
|
angr/analyses/ddg.py,sha256=AWPPsL2bfTAua5meuQfPFL6b29PLpCLZzw-LGCv5iVo,63214
|
|
@@ -53,11 +53,11 @@ angr/analyses/patchfinder.py,sha256=N4J9vQgcaDrCbiPMNopAIPq0uEhJkVhF_usX8HFaXaQ,
|
|
|
53
53
|
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
54
54
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
55
55
|
angr/analyses/reassembler.py,sha256=dc1bM-4pxVa2dypC7qL2REdKhpyKhSbQPf-LCDIBEwA,98351
|
|
56
|
-
angr/analyses/s_liveness.py,sha256=
|
|
57
|
-
angr/analyses/s_propagator.py,sha256=
|
|
56
|
+
angr/analyses/s_liveness.py,sha256=4BR_E3_Is7urOkKgtB1hgGpRoyqfytv9WcqrpSXc74k,5881
|
|
57
|
+
angr/analyses/s_propagator.py,sha256=Lsg4-Sicv70U11APKC5ivW8d7KVAhOcImWGz_yUuhmY,20783
|
|
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=msazJUmyMdvWVc0fRmiVTitWXGDQUunpdT2R2OO5LKs,32991
|
|
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=
|
|
68
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=aWAe5MDKcw0enZf9poZYVoucIKxWrL7p5lLpiO_CfwM,39774
|
|
69
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=qu7Udinpz50EuQ7jRxhzCs6NI97M-NOVRzwtUcd2C30,21811
|
|
70
70
|
angr/analyses/calling_convention/utils.py,sha256=A4m85U1gd_dEuPEjlh4vWBC-mxxozOFIGIhApmgTvdI,2017
|
|
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=
|
|
76
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=
|
|
77
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
75
|
+
angr/analyses/cfg/cfg_base.py,sha256=7RRJ3omI-SYzeegrYYSrcU2GDcq9Uy2SaJdOvVHvjOQ,121985
|
|
76
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=DkLzdePp50ecbFDhpqEtK43V8H1K4BnQe9NdjlNnonY,147826
|
|
77
|
+
angr/analyses/cfg/cfg_fast.py,sha256=sCjyVVYZVJu6sKMSCnnjr3NtHYNhw5uwKHUmOi2HsqU,225765
|
|
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
|
|
@@ -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=ySfaLzfwgGX2soQ7RQOUlN-CJlLdiVdRMgsL7zh9kNU,106740
|
|
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=s8AcjCrsqGWqgs_0MqDkT-M5H8YcuKyTFIezaAwDxAU,72942
|
|
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=
|
|
107
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=AfpdlLTt7Q7OhfXvD_KIqsWvSs8d_3OO80AL5p7slsc,13628
|
|
108
108
|
angr/analyses/decompiler/callsite_maker.py,sha256=eADZt3lujqGS9WjrWat9L3GasjcdR7iPGiyKdcogpbU,18751
|
|
109
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
110
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
109
|
+
angr/analyses/decompiler/clinic.py,sha256=j1y_Hf1IBvU9eMlwBsSCUB-yp9oemNdIsEQbrVdPbDQ,127551
|
|
110
|
+
angr/analyses/decompiler/condition_processor.py,sha256=LhV6kEg_taX8-LnJ6a_L5610TfQF5P3oM0HlL6XX8Q8,53740
|
|
111
111
|
angr/analyses/decompiler/decompilation_cache.py,sha256=raMsZL9i5ajKP-lO_Qo_1gP2bsDccTNP9cNhINbk8ac,1375
|
|
112
|
-
angr/analyses/decompiler/decompilation_options.py,sha256=
|
|
113
|
-
angr/analyses/decompiler/decompiler.py,sha256=
|
|
112
|
+
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
113
|
+
angr/analyses/decompiler/decompiler.py,sha256=ol3_Mlrn2vLoK3D9Kg5Y9_xUBdZYVmxPVrUXS6duK40,28704
|
|
114
114
|
angr/analyses/decompiler/empty_node_remover.py,sha256=_RAGjqDyRmannEGPcMmWkL7em990-_sKgl5CYreb-yI,7403
|
|
115
115
|
angr/analyses/decompiler/expression_narrower.py,sha256=hEL9ZkmUpX6wAv_hBcIV4jwTuiHpbZTNjGodfV0VsnI,10343
|
|
116
116
|
angr/analyses/decompiler/goto_manager.py,sha256=GUWt3Y_NCpmreIt4plxX5Y3UO2V8IVGZuRtF2GqI-cw,4006
|
|
@@ -123,23 +123,24 @@ angr/analyses/decompiler/region_identifier.py,sha256=x3O9lvmJbO3rydE1Aw8eRMOFNXU
|
|
|
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
|
-
angr/analyses/decompiler/sequence_walker.py,sha256=
|
|
127
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
128
|
-
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=
|
|
129
|
-
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=
|
|
126
|
+
angr/analyses/decompiler/sequence_walker.py,sha256=XW5nKfa9n0Dh1p6M-tLDK1ofr51RPh_AcLUE50yHvKk,9595
|
|
127
|
+
angr/analyses/decompiler/utils.py,sha256=cy6XGohXLT2HgUQkvkQANLCTbJxlMY1AnhyVC28K6xM,35902
|
|
128
|
+
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
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
|
|
131
|
+
angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=3osgrQXaq4ArvnJNOChvzaNtovahEjfEl7igPddh-0c,2499
|
|
131
132
|
angr/analyses/decompiler/counters/__init__.py,sha256=UT5K0cWgkVTAXZxy1qBBzrQip3YR2BOBVpxlAuNlt5o,480
|
|
132
133
|
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
133
134
|
angr/analyses/decompiler/counters/call_counter.py,sha256=ek1mm83DPDEhmR4UjBam1WxCpSnFbjR5lW6McRLxSKo,1240
|
|
134
135
|
angr/analyses/decompiler/counters/expression_counters.py,sha256=DFhe2hpYBgoF-ASALpzVsNJwM4MiNQcrpNKsmXslri8,2850
|
|
135
136
|
angr/analyses/decompiler/counters/seq_cf_structure_counter.py,sha256=P1nQOPo9p4hFg9kHEhJloUbN97UUUcFPaD8edGjl-MI,2320
|
|
136
137
|
angr/analyses/decompiler/dephication/__init__.py,sha256=xd6YSsoXLKVB2g52l-TZGsDwN5Vm3p4b35lqAYcrlhU,280
|
|
137
|
-
angr/analyses/decompiler/dephication/dephication_base.py,sha256=
|
|
138
|
+
angr/analyses/decompiler/dephication/dephication_base.py,sha256=9HdE_zKnakLSYJZrymbwOm1FfwHPcZOp2DkHvmmiyA8,3235
|
|
138
139
|
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
139
140
|
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=vhBGSu1VN2Yl7eethD5fiatHPOjGNs4JSov5x-SMFFw,3400
|
|
140
141
|
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=jYMpzmQ_r8ojLldZ2e_M20E3wRqWKlQZKfWeCd-_YqA,14060
|
|
141
|
-
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=
|
|
142
|
-
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=
|
|
142
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=olvAMAkobGsVUhntGkh37U50RXZS_FoSFzEWwy2Oyqk,15148
|
|
143
|
+
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=Y5On7C6glk3VztwbQFzKYlTTRf2vu9bB5fcRH3rbuhQ,4802
|
|
143
144
|
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=O6nEtFlNQnASWocTnt5kXbTfiWMY9pX8MWFYlRJ7M8A,4875
|
|
144
145
|
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=uUzQWVkeKL2C9Lq8NZ7UkkZBAXydxOd0F1jxr0Zi__Q,5514
|
|
145
146
|
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
@@ -151,7 +152,7 @@ angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=xPBoZCZ
|
|
|
151
152
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
152
153
|
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=PiCFksceRfu0nPPSKfzTsMmrAJ1YaHMEjcuCHcaYbgM,16662
|
|
153
154
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
154
|
-
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=
|
|
155
|
+
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=lS70nBKCSWQ69vcvazAI24zgUdEFtbg33wr6t78XFqI,4029
|
|
155
156
|
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=8eVT6ffOtgU4GHqeigwrdvFuA59ZV80TfYeaGLDW9A0,24843
|
|
156
157
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
157
158
|
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=gFEgdVcsWOCex1VZMRY5kBgjL4LGE9yXp8N5y6LY7ws,13168
|
|
@@ -161,7 +162,7 @@ angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=EYls4Bc
|
|
|
161
162
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=X6A252YhqUvT7A6J5NqCKBom2PRlh5NDHpAjXfNvBfg,7854
|
|
162
163
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
163
164
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
164
|
-
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=
|
|
165
|
+
angr/analyses/decompiler/optimization_passes/return_duplicator_base.py,sha256=As_gDNCYhcuIYV6pMuuxDxeIVKxDveuXlkifhz4KaoU,24872
|
|
165
166
|
angr/analyses/decompiler/optimization_passes/return_duplicator_high.py,sha256=ICDYwQJt5E2OVasdqn42jzbjwUXhSj6Plh3Y1iUHpAQ,2178
|
|
166
167
|
angr/analyses/decompiler/optimization_passes/return_duplicator_low.py,sha256=-mBEVfwGz986lDDEGwBG8wvGQTrFZHE7TLV-7rWt-H0,10076
|
|
167
168
|
angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=wRa-_zwogSbqgxKu-apHp-fSMwuiBFrKgXa29BiY4YE,14422
|
|
@@ -212,7 +213,7 @@ angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha
|
|
|
212
213
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=_TOXqaPu4SXkjFLsDjjeOd7SGz8nQXgRXofFvOswqIk,7766
|
|
213
214
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
214
215
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
215
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=
|
|
216
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=_y3YWya1mbZWx663yrwTCMF9F57JVpIpBrrU6VNNyjQ,1273
|
|
216
217
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py,sha256=DqGdwso3CuulthzNNjUseNF2eb8VMQhhritjWSwCViE,1425
|
|
217
218
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=XBE4jziVAhwUDxb3un5yMhngPc-MBGVcwtdm0EczQy4,1776
|
|
218
219
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=MHkgIgOMWaAVqe5q4X-yzIxkPzd2KyTngvhxtXorOi4,1605
|
|
@@ -244,21 +245,21 @@ angr/analyses/decompiler/region_simplifiers/region_simplifier.py,sha256=ByEbrHPA
|
|
|
244
245
|
angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=sYhRG2kti3NZOZf5f94Z2eX9tunTAUrzT83KlkUyk8A,24900
|
|
245
246
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
246
247
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
247
|
-
angr/analyses/decompiler/ssailification/rewriting.py,sha256=
|
|
248
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
248
|
+
angr/analyses/decompiler/ssailification/rewriting.py,sha256=49OcvTm3NDbF7xGNkJaYa9KyHqpdsS8-_GRetoZYExg,12833
|
|
249
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=y-1i5Dw7Pf1pfqOXp3tA3-bxecQemFF_YYRdTm8KtHg,32317
|
|
249
250
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
250
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
251
|
-
angr/analyses/decompiler/ssailification/traversal.py,sha256=
|
|
251
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=4GpmHJflyEpecW3vFaUImeFAsK7D5cqzq4m-fmhGxUs,9358
|
|
252
|
+
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
252
253
|
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=dczhUEuoBTg0w8GpAStIzD7iUC7TaaplCUe4YYWwRNI,9793
|
|
253
|
-
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=
|
|
254
|
+
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
254
255
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
255
256
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
256
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
257
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=KL6j5dIjg8WQJXrhyieHQJyqBIdjyReqpRKIJQIPUjc,142536
|
|
257
258
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
258
259
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
259
260
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
260
261
|
angr/analyses/decompiler/structuring/dream.py,sha256=mPNNsNvNb-LoDcoU_HjUejRytIFY_ZyCAbK4tNq_5lM,48254
|
|
261
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
262
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=JOb5FwC-oBWyJkDYJ0VQIcNFnj6YOTbVeyE7GSGzfqk,130354
|
|
262
263
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=wxMiixVpmao1Rpuo3wN-gxkPh2YrgTTW4usgtdjdY9E,7150
|
|
263
264
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
264
265
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=HF7SjikpR1M2-T8QM5VfSKqXpQivcU-EGYO5Yqsh5sM,43282
|
|
@@ -324,7 +325,7 @@ angr/analyses/reaching_definitions/dep_graph.py,sha256=wkFQBEZr9q__0qMbS4e9sSX9f
|
|
|
324
325
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=BvLsafjUOf5N0aoDYFb0IAzBKIWF0DzYRZVYZd8Bjfc,45861
|
|
325
326
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=1cE8bhDhvlrXcqRN_S68KoUl61i7hlMmnKb987cd3sk,43999
|
|
326
327
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
327
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
328
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=yvdoKmWXVX7l1qI0rSxGany_Q93Hvl4EfExi9M2jKVU,28272
|
|
328
329
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
329
330
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
330
331
|
angr/analyses/reaching_definitions/rd_state.py,sha256=fqbOaTlrwfUlklpzKd8qP4uHDR-VzuSZhLslPXiNgrc,24030
|
|
@@ -336,9 +337,9 @@ angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=5PW
|
|
|
336
337
|
angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=14gNFX-oH8zVmfnyILklXbHAkxmsWcNT0YkYDSdHMo8,5047
|
|
337
338
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=J_wALo_qxPk-KjhiWMoWDhH4O36wKmqKkWyf2zlAqug,1238
|
|
338
339
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
339
|
-
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=
|
|
340
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
341
|
-
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=
|
|
340
|
+
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=88s0atY64Aay1_xi4UWhAeMjiHsc1_xE8PxVDgzv_3w,5055
|
|
341
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=3f8tSWngMXpLr0vcGSDE8R9qByiebI7bee9Q9PB2TV4,12624
|
|
342
|
+
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=rOyMsKRvNrzauUOGsZeXG5lbWy2w5fQmxpINDyVCmcM,7670
|
|
342
343
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
343
344
|
angr/analyses/typehoon/dfa.py,sha256=E0dNlKxy6A9uniqRJn3Rcwa6c6_NT_VVjtHM8b-j2LE,3503
|
|
344
345
|
angr/analyses/typehoon/lifter.py,sha256=iLl9F7RZtyth3qEeTvJGyvrKxrmaLn8LxS9DUbkoz4k,2823
|
|
@@ -353,13 +354,13 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
353
354
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
354
355
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
355
356
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
356
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
357
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
358
|
-
angr/analyses/variable_recovery/engine_vex.py,sha256=
|
|
357
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=LyU3nWpvOYnrr9lAcPYVm7u89S-Kuhai52Yz8mikixg,31882
|
|
358
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=8af0gZVgWL2saGwtjyGJzUHVSnRuESIAGiF7dQJKWlo,51325
|
|
359
|
+
angr/analyses/variable_recovery/engine_vex.py,sha256=DPA_0MuGsxT5bU9NxuDXn13VDOGY-Fh4biG-ML4TmSk,20645
|
|
359
360
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=vWplxRc-iwIJsQ5aHWH1t29zdyLPjfklm8h3CWHseng,5143
|
|
360
361
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
361
362
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=cJsc64ev_UmWTb2KNTdRF3HtpZyh4J2CEgnUAlH2MVg,15181
|
|
362
|
-
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=
|
|
363
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=FdUYHFVRHFA5nCUIOUl4_HgvRSSpQ7w8nD3gRovKp_0,26730
|
|
363
364
|
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
364
365
|
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
365
366
|
angr/angrdb/models.py,sha256=5Akv-fIjk3E2YHymEWu_nrbE8aQ9l75zOAaSIDEzeTQ,4794
|
|
@@ -398,7 +399,7 @@ angr/engines/engine.py,sha256=yPowUl-AKLCBhjAdigFtckQKCA-ibbEoR8LaTcsVhdc,6880
|
|
|
398
399
|
angr/engines/failure.py,sha256=4HMJ6E4CODc9TScGeOozHzEBqN9rmkeFPbM2nOwSmr0,1034
|
|
399
400
|
angr/engines/hook.py,sha256=jMPgloeh6rZIx_OtsCec6Ct04xx5xQLez9_XZfiW2TI,2581
|
|
400
401
|
angr/engines/procedure.py,sha256=iQoFIF9YwsK2KkxRjZbfmnuuL-hZgRdlvm4y6VWnxQY,2555
|
|
401
|
-
angr/engines/successors.py,sha256=
|
|
402
|
+
angr/engines/successors.py,sha256=2bt_tSH8IcwAeA63essLZJsDggsiyr6KpCXfYW7fSuc,24325
|
|
402
403
|
angr/engines/syscall.py,sha256=BoC2dtkBvi82y91A2BRxFxm3nbXWCTnsJHaTKD2e-bU,2160
|
|
403
404
|
angr/engines/unicorn.py,sha256=KNuBWIYTWP2l4NHjV1HW4Ggiiyn4gfOxLJYi_M0f5Us,24506
|
|
404
405
|
angr/engines/light/__init__.py,sha256=-634kaOlcs8ZAsMNtOML7FXP3svyZIrJb3ikq0isFv0,494
|
|
@@ -407,15 +408,15 @@ angr/engines/light/engine.py,sha256=E3DwgCa_qMpb4yXNythdtmRZkw7Of4O9bO8oag6U53E,
|
|
|
407
408
|
angr/engines/pcode/__init__.py,sha256=KWBnZnLYR3qANzXvxOt3XJq6cR57mQeNvugPBh7gr8s,195
|
|
408
409
|
angr/engines/pcode/behavior.py,sha256=ycNNTNHlCJFG6fPtOwRHbI3c0fkY5pYyPA--k3Kz-WY,29406
|
|
409
410
|
angr/engines/pcode/cc.py,sha256=brVglfSNnpDbRRcG-KO9EZ5NMMlmtDzP1n4kap7gKRY,3236
|
|
410
|
-
angr/engines/pcode/emulate.py,sha256=
|
|
411
|
+
angr/engines/pcode/emulate.py,sha256=LiIIrtQRlwUMeBX821ORQAXfjeXvBv4x5KU9GP0doBg,16740
|
|
411
412
|
angr/engines/pcode/engine.py,sha256=ZCBTxvdmLrYxMYqHaQDIu-WcFl7YN_RHkJ8Z9WlJaWI,10486
|
|
412
|
-
angr/engines/pcode/lifter.py,sha256=
|
|
413
|
+
angr/engines/pcode/lifter.py,sha256=oYxToKxRhp6Zo7tln9O2SvpAxgih09-FbFfWk2uUQWo,52239
|
|
413
414
|
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
414
415
|
angr/engines/soot/engine.py,sha256=23sv3_qn85Dnzi_ttIMyJ9PLL70auVKPZgZsraEhi8M,17059
|
|
415
416
|
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
416
417
|
angr/engines/soot/field_dispatcher.py,sha256=WelL0r0f2hSUki4Xw0myHlzvnzqhnN9l2JyByJsB-2Q,1893
|
|
417
418
|
angr/engines/soot/method_dispatcher.py,sha256=Ooj7DwtXDcgvw6Wt60Q7Z_Xj6lEKR79ncVW_HCZphkQ,1759
|
|
418
|
-
angr/engines/soot/expressions/__init__.py,sha256=
|
|
419
|
+
angr/engines/soot/expressions/__init__.py,sha256=FO2AAkrv9ky6Wi22ziXnGWVwpXytzMfQispza--D-yg,2544
|
|
419
420
|
angr/engines/soot/expressions/arrayref.py,sha256=G7Pr-fe1sYg_PFT-5Q8TwnAZZ4uTIuXEsVqXFmTsVQs,908
|
|
420
421
|
angr/engines/soot/expressions/base.py,sha256=7y6a_euE8TNsrCA1jZfyjHjh7TH91nKaP_Z80PBICPY,496
|
|
421
422
|
angr/engines/soot/expressions/binop.py,sha256=8u6bII365ueXXQ6Mu4jmdYNRiRmAzPpERRtfRB1XJI4,816
|
|
@@ -435,7 +436,7 @@ angr/engines/soot/expressions/phi.py,sha256=XS44tYMD-70WCL0EH0BdVcLIfYXLEHgSW9Ty
|
|
|
435
436
|
angr/engines/soot/expressions/staticfieldref.py,sha256=LlrlCaDSBv9tCa8TNK3UskVshv2bT8dyt8JpdI3gn1I,267
|
|
436
437
|
angr/engines/soot/expressions/thisref.py,sha256=ofsOlxQ9TX992FEmWRDhDuxZ34F56QnzwVxWrrJ0dOg,184
|
|
437
438
|
angr/engines/soot/expressions/unsupported.py,sha256=PAg0gAByaPAlj4GTsYJMNc72MPkLPB3xjYNRw6EbPYQ,148
|
|
438
|
-
angr/engines/soot/statements/__init__.py,sha256=
|
|
439
|
+
angr/engines/soot/statements/__init__.py,sha256=r6cR4JUWLUAJvyqcXmc-BLSPzO8uLtg22bIYSClD2ng,1193
|
|
439
440
|
angr/engines/soot/statements/assign.py,sha256=MQJmr3EN1wylmW7j9aO2qIrz1HulXa_-wk0yVEcuy_c,1322
|
|
440
441
|
angr/engines/soot/statements/base.py,sha256=cOF5oCzq10X1erMe4A96GKg0q4wvEeCf1kqCeFJRdIk,2143
|
|
441
442
|
angr/engines/soot/statements/goto.py,sha256=M1ECqzQQJtdn3vbP0J5k_3Qvhu_Uilkq22y0JmoVAv0,368
|
|
@@ -445,7 +446,7 @@ angr/engines/soot/statements/invoke.py,sha256=HbR2ke7Kcrns8e3dzjxYoxEzm4UnWjQL_E
|
|
|
445
446
|
angr/engines/soot/statements/return_.py,sha256=4IIqto1nstQ-pGJYp8c7mrPRVyy41yeofQTqUcq9nUE,501
|
|
446
447
|
angr/engines/soot/statements/switch.py,sha256=4-yRehzFKQLtVH-mMG5KynsVH8oSNW8--R2mdWIJacY,1342
|
|
447
448
|
angr/engines/soot/statements/throw.py,sha256=k41dYR-h63tjJ1xC_0npo3pMBFaX0nJqRZ0vsHzJ5fU,397
|
|
448
|
-
angr/engines/soot/values/__init__.py,sha256=
|
|
449
|
+
angr/engines/soot/values/__init__.py,sha256=L3oz1NXDxvCTsdU8chpszGBuVIrWWSNS0LhHk0lrPhI,1101
|
|
449
450
|
angr/engines/soot/values/arrayref.py,sha256=lki_NAPesi8FM0glJI8qM2cja5K0BCSxtRdVSrTCljc,4405
|
|
450
451
|
angr/engines/soot/values/base.py,sha256=nTETgLhh4EST1ujvbXG-3fG-ekAMF2f6WiQzsjDtkI4,156
|
|
451
452
|
angr/engines/soot/values/constants.py,sha256=S9iY6vQui2ATFJTMcZCpdbrn9ttBcj3xFOLRInlcpHk,438
|
|
@@ -456,7 +457,7 @@ angr/engines/soot/values/staticfieldref.py,sha256=fYucDqKryaZbCWm2iOSsVi7FdGRIm9
|
|
|
456
457
|
angr/engines/soot/values/strref.py,sha256=8Nue7PKTJnkOvDJWtyMCR36ClybLk9X0PM3A_geu0k0,1138
|
|
457
458
|
angr/engines/soot/values/thisref.py,sha256=ajwA1zOdoww0g866ubHkMNKFKwCWqjlmIYw6GcXgcNo,5790
|
|
458
459
|
angr/engines/vex/__init__.py,sha256=k8cIQpJO2Wv6erLCOa4boEywRcwlFOTgAgGP6wNQcwM,525
|
|
459
|
-
angr/engines/vex/lifter.py,sha256=
|
|
460
|
+
angr/engines/vex/lifter.py,sha256=2AX-kivge1Ma-tHRhFcI8kbcAfknjzoIA05vdVcRy1k,17215
|
|
460
461
|
angr/engines/vex/claripy/__init__.py,sha256=4B8H1VOHrrKJMjAXZkZ0r_02issFP_bxDJJMw50yVe4,109
|
|
461
462
|
angr/engines/vex/claripy/ccall.py,sha256=Q8u0DOsjkr-4PHgnpciWGocm4q783c9n4CgzuUAY-J4,81744
|
|
462
463
|
angr/engines/vex/claripy/datalayer.py,sha256=kb-QSvwRzc6Mufwsv012Tgg_PNJPUTec8ElSuJcFzNQ,4971
|
|
@@ -500,7 +501,7 @@ angr/exploration_techniques/tracer.py,sha256=QqxsNn4jPwbpquZfjZDMlyIyAoZa1cOodDJ
|
|
|
500
501
|
angr/exploration_techniques/unique.py,sha256=UqB8dUzvgaSfYBfm15g8XYlBsS8Out0z1loN4sjBsNw,4453
|
|
501
502
|
angr/exploration_techniques/veritesting.py,sha256=8F7emyvQa8SOjr7Ztk7Bw-aIrYjrvmXBeaavMlNLvxs,1392
|
|
502
503
|
angr/flirt/__init__.py,sha256=O6Qo4OKaEkpq1kxluphTNauGjBH2WS5AuX91xlToyzA,4403
|
|
503
|
-
angr/flirt/build_sig.py,sha256=
|
|
504
|
+
angr/flirt/build_sig.py,sha256=AO48uuWi76eMiw4-RTJn58j6DDyziy7HCuWMNpApcOQ,10020
|
|
504
505
|
angr/knowledge_plugins/__init__.py,sha256=T8ovRNYYhqk_QkKN2OU5JXzeYZob8iq3v0ZlnX8_Hho,1160
|
|
505
506
|
angr/knowledge_plugins/callsite_prototypes.py,sha256=ZVqTebckIj2VonQSGLFYW6TUgft1J5sOpSwE0K1Nyuk,1587
|
|
506
507
|
angr/knowledge_plugins/comments.py,sha256=s4wUAtbUa75MC0Dc5h44V08kyVtO8VO39zcy_qkU6cg,339
|
|
@@ -521,10 +522,10 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
521
522
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
522
523
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
523
524
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
524
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
525
|
+
angr/knowledge_plugins/functions/function.py,sha256=PvNmICMYTY5G4lUBnZ04VMPzfPvDQtzfmW58LDZIV-4,67211
|
|
525
526
|
angr/knowledge_plugins/functions/function_manager.py,sha256=gdXZY5__a8c_ItQoDkJq4ZBVk-ZLHnmBPYsHA6uEjeA,20001
|
|
526
527
|
angr/knowledge_plugins/functions/function_parser.py,sha256=Ma_51hPet3iVJgMtBhKaT48CcNnxCNv2ys5oMrqJ3bw,11821
|
|
527
|
-
angr/knowledge_plugins/functions/soot_function.py,sha256=
|
|
528
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=lYMe4qbkhAkXqGHTVb0-RM_kB8xWYUocuioK7UmKZgQ,4847
|
|
528
529
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
529
530
|
angr/knowledge_plugins/key_definitions/atoms.py,sha256=f01R8IyzNp-eI5ynzmCQYJIhOurPH3fhQY7HYsFMQ4c,11075
|
|
530
531
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=i-44XCfMyS2pK8AwW2rL0prhtxvsWB64E9pm4eDSUcY,673
|
|
@@ -546,7 +547,7 @@ angr/knowledge_plugins/propagations/propagation_model.py,sha256=5ehnHl--YL_YLiOc
|
|
|
546
547
|
angr/knowledge_plugins/propagations/states.py,sha256=gl5PxihjdMtw9fc3nNSOa8D09B8RyahP22qTmdKe6wg,18737
|
|
547
548
|
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
548
549
|
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
549
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=
|
|
550
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=Uz4X7l3MGs5oSymVBBAFZBr-eqpi1V0Dxg4b58pEA8M,49996
|
|
550
551
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
551
552
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
552
553
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=Yb88z3L8Y26TfGeRHdsGWQlT9f6oWntjEg6s-kcVtUQ,4040
|
|
@@ -966,7 +967,7 @@ angr/procedures/glibc/__ctype_toupper_loc.py,sha256=f_7QVgjBwqX0C-J1FLPSVwTcYJy8
|
|
|
966
967
|
angr/procedures/glibc/__errno_location.py,sha256=2vsI8nPVYcvxGTg4UZ_cEGJT-Xh3Gk_nbV1PSObr-nE,192
|
|
967
968
|
angr/procedures/glibc/__init__.py,sha256=NjNtLNzO6f70tY9_LCv4-QRIC4g7o9y5CELaX1VUMyU,110
|
|
968
969
|
angr/procedures/glibc/__libc_init.py,sha256=xYokoQsAc-eJQPW4sp6EQR9X22mzF3-47-TUb-vGhQQ,1555
|
|
969
|
-
angr/procedures/glibc/__libc_start_main.py,sha256=
|
|
970
|
+
angr/procedures/glibc/__libc_start_main.py,sha256=as8GrAth_w3Ol-fht9SjE-x6I8H17ndH9kfXmq40OWQ,11338
|
|
970
971
|
angr/procedures/glibc/dynamic_loading.py,sha256=uainl-wSeREeGbKGXjOlpwTxrQgjFfcJkZ0lnzOWR_s,695
|
|
971
972
|
angr/procedures/glibc/scanf.py,sha256=Y4wXanaRKmkrkGygwZZj23MwcTzz_HODo2CxzO8ab0M,209
|
|
972
973
|
angr/procedures/glibc/sscanf.py,sha256=FBVbBuvTS-tFFPEGChaEKBFGho9OOAN5VKAFbk2X0nk,124
|
|
@@ -1355,12 +1356,12 @@ angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
|
1355
1356
|
angr/utils/segment_list.py,sha256=DulfCDdNETMehseRey64FkjmORQvoSyVd9eRZ4sQ7tw,21065
|
|
1356
1357
|
angr/utils/tagged_interval_map.py,sha256=rXKBuT14N23AAntpOKhZhmA-qqymnsvjpheFXoTRVRA,4417
|
|
1357
1358
|
angr/utils/timing.py,sha256=n-YZ86g0ZWmLhsoNvcimRpKzewR5hmquLZe6fagxlBw,2224
|
|
1358
|
-
angr/utils/ssa/__init__.py,sha256=
|
|
1359
|
+
angr/utils/ssa/__init__.py,sha256=mXPVi7w3tj8e34cFffbDRzR-M4xmCSle85Y-OAjbG3g,9115
|
|
1359
1360
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1360
1361
|
angr/utils/ssa/vvar_uses_collector.py,sha256=8gfAWdRMz73Deh-ZshDM3GPAot9Lf-rHzCiaCil0hlE,1342
|
|
1361
|
-
angr-9.2.
|
|
1362
|
-
angr-9.2.
|
|
1363
|
-
angr-9.2.
|
|
1364
|
-
angr-9.2.
|
|
1365
|
-
angr-9.2.
|
|
1366
|
-
angr-9.2.
|
|
1362
|
+
angr-9.2.138.dist-info/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1363
|
+
angr-9.2.138.dist-info/METADATA,sha256=af9QcAmOmXzsD6UfrjbQzQLzGStr4CpDZS7X-GQnW6Y,4762
|
|
1364
|
+
angr-9.2.138.dist-info/WHEEL,sha256=q0csfyxC0CgL_VbODy1dAROUKOBO6j0wA7STVVTEknI,108
|
|
1365
|
+
angr-9.2.138.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1366
|
+
angr-9.2.138.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1367
|
+
angr-9.2.138.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|