angr 9.2.147__py3-none-win_amd64.whl → 9.2.149__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of angr might be problematic. Click here for more details.
- angr/__init__.py +1 -1
- angr/analyses/analysis.py +3 -11
- angr/analyses/calling_convention/calling_convention.py +42 -2
- angr/analyses/calling_convention/fact_collector.py +5 -4
- angr/analyses/calling_convention/utils.py +1 -0
- angr/analyses/cfg/cfg_base.py +3 -59
- angr/analyses/cfg/cfg_emulated.py +17 -14
- angr/analyses/cfg/cfg_fast.py +68 -63
- angr/analyses/cfg/cfg_fast_soot.py +3 -3
- angr/analyses/decompiler/ail_simplifier.py +65 -32
- angr/analyses/decompiler/block_simplifier.py +20 -6
- angr/analyses/decompiler/callsite_maker.py +28 -18
- angr/analyses/decompiler/clinic.py +84 -17
- angr/analyses/decompiler/condition_processor.py +0 -21
- angr/analyses/decompiler/counters/call_counter.py +3 -0
- angr/analyses/decompiler/dephication/rewriting_engine.py +24 -2
- angr/analyses/decompiler/optimization_passes/__init__.py +5 -0
- angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py +15 -13
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +1 -1
- angr/analyses/decompiler/optimization_passes/determine_load_sizes.py +64 -0
- angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py +165 -0
- angr/analyses/decompiler/optimization_passes/engine_base.py +11 -2
- angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py +17 -2
- angr/analyses/decompiler/optimization_passes/optimization_pass.py +10 -6
- angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py +99 -30
- angr/analyses/decompiler/peephole_optimizations/__init__.py +6 -0
- angr/analyses/decompiler/peephole_optimizations/base.py +43 -3
- angr/analyses/decompiler/peephole_optimizations/constant_derefs.py +1 -1
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py +3 -0
- angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py +4 -1
- angr/analyses/decompiler/peephole_optimizations/remove_cxx_destructor_calls.py +32 -0
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py +69 -2
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +14 -0
- angr/analyses/decompiler/peephole_optimizations/rewrite_conv_mul.py +40 -0
- angr/analyses/decompiler/peephole_optimizations/rewrite_cxx_operator_calls.py +90 -0
- angr/analyses/decompiler/presets/fast.py +2 -0
- angr/analyses/decompiler/presets/full.py +2 -0
- angr/analyses/decompiler/ssailification/rewriting_engine.py +51 -4
- angr/analyses/decompiler/ssailification/ssailification.py +23 -3
- angr/analyses/decompiler/ssailification/traversal_engine.py +15 -1
- angr/analyses/decompiler/structured_codegen/c.py +146 -15
- angr/analyses/decompiler/structuring/phoenix.py +11 -3
- angr/analyses/decompiler/utils.py +6 -1
- angr/analyses/deobfuscator/api_obf_finder.py +5 -1
- angr/analyses/deobfuscator/api_obf_peephole_optimizer.py +1 -1
- angr/analyses/forward_analysis/visitors/graph.py +0 -8
- angr/analyses/identifier/runner.py +1 -1
- angr/analyses/reaching_definitions/function_handler.py +4 -4
- angr/analyses/reassembler.py +1 -1
- angr/analyses/s_reaching_definitions/s_rda_view.py +1 -0
- angr/analyses/stack_pointer_tracker.py +1 -1
- angr/analyses/static_hooker.py +11 -9
- angr/analyses/typehoon/lifter.py +20 -0
- angr/analyses/typehoon/simple_solver.py +42 -9
- angr/analyses/typehoon/translator.py +4 -1
- angr/analyses/typehoon/typeconsts.py +17 -6
- angr/analyses/typehoon/typehoon.py +21 -5
- angr/analyses/variable_recovery/engine_ail.py +52 -13
- angr/analyses/variable_recovery/engine_base.py +37 -12
- angr/analyses/variable_recovery/variable_recovery_fast.py +33 -2
- angr/calling_conventions.py +96 -27
- angr/engines/light/engine.py +7 -0
- angr/exploration_techniques/director.py +1 -1
- angr/knowledge_plugins/functions/function.py +109 -38
- angr/knowledge_plugins/functions/function_manager.py +9 -0
- angr/knowledge_plugins/functions/function_parser.py +9 -1
- angr/knowledge_plugins/functions/soot_function.py +1 -1
- angr/knowledge_plugins/key_definitions/key_definition_manager.py +1 -1
- angr/knowledge_plugins/propagations/states.py +5 -2
- angr/knowledge_plugins/variables/variable_manager.py +3 -3
- angr/lib/angr_native.dll +0 -0
- angr/procedures/definitions/__init__.py +15 -12
- angr/procedures/definitions/types_stl.py +22 -0
- angr/procedures/stubs/format_parser.py +1 -1
- angr/project.py +23 -29
- angr/protos/cfg_pb2.py +14 -25
- angr/protos/function_pb2.py +11 -22
- angr/protos/primitives_pb2.py +36 -47
- angr/protos/variables_pb2.py +28 -39
- angr/protos/xrefs_pb2.py +8 -19
- angr/sim_type.py +251 -146
- angr/simos/cgc.py +1 -1
- angr/simos/linux.py +5 -5
- angr/simos/windows.py +5 -5
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +1 -1
- {angr-9.2.147.dist-info → angr-9.2.149.dist-info}/METADATA +9 -8
- {angr-9.2.147.dist-info → angr-9.2.149.dist-info}/RECORD +91 -85
- {angr-9.2.147.dist-info → angr-9.2.149.dist-info}/WHEEL +1 -1
- {angr-9.2.147.dist-info → angr-9.2.149.dist-info/licenses}/LICENSE +3 -0
- {angr-9.2.147.dist-info → angr-9.2.149.dist-info}/entry_points.txt +0 -0
- {angr-9.2.147.dist-info → angr-9.2.149.dist-info}/top_level.txt +0 -0
angr/simos/linux.py
CHANGED
|
@@ -29,7 +29,7 @@ class SimLinux(SimUserland):
|
|
|
29
29
|
def __init__(self, project, **kwargs):
|
|
30
30
|
super().__init__(
|
|
31
31
|
project,
|
|
32
|
-
syscall_library=L["linux"],
|
|
32
|
+
syscall_library=L["linux"][0],
|
|
33
33
|
syscall_addr_alignment=project.arch.instruction_alignment,
|
|
34
34
|
name="Linux",
|
|
35
35
|
**kwargs,
|
|
@@ -66,12 +66,12 @@ class SimLinux(SimUserland):
|
|
|
66
66
|
self.project.hook(self.vsyscall_addr, P["linux_kernel"]["_vsyscall"]())
|
|
67
67
|
|
|
68
68
|
# there are some functions we MUST use the simprocedures for, regardless of what the user wants
|
|
69
|
-
self._weak_hook_symbol("__tls_get_addr", L["ld.so"].get("__tls_get_addr", self.arch)) # ld
|
|
70
|
-
self._weak_hook_symbol("___tls_get_addr", L["ld.so"].get("___tls_get_addr", self.arch)) # ld
|
|
69
|
+
self._weak_hook_symbol("__tls_get_addr", L["ld.so"][0].get("__tls_get_addr", self.arch)) # ld
|
|
70
|
+
self._weak_hook_symbol("___tls_get_addr", L["ld.so"][0].get("___tls_get_addr", self.arch)) # ld
|
|
71
71
|
self._weak_hook_symbol(
|
|
72
|
-
"_dl_get_tls_static_info", L["ld.so"].get("_dl_get_tls_static_info", self.arch)
|
|
72
|
+
"_dl_get_tls_static_info", L["ld.so"][0].get("_dl_get_tls_static_info", self.arch)
|
|
73
73
|
) # ld
|
|
74
|
-
self._weak_hook_symbol("_dl_vdso_vsym", L["libc.so.6"].get("_dl_vdso_vsym", self.arch)) # libc
|
|
74
|
+
self._weak_hook_symbol("_dl_vdso_vsym", L["libc.so.6"][0].get("_dl_vdso_vsym", self.arch)) # libc
|
|
75
75
|
|
|
76
76
|
# set up some static data in the loader object...
|
|
77
77
|
_rtld_global = self.project.loader.find_symbol("_rtld_global")
|
angr/simos/windows.py
CHANGED
|
@@ -51,7 +51,7 @@ class SimWindows(SimOS):
|
|
|
51
51
|
self.acmdln_ptr = None
|
|
52
52
|
self.wcmdln_ptr = None
|
|
53
53
|
|
|
54
|
-
self.fastfail = L["ntoskrnl.exe"].get("__fastfail", self.arch)
|
|
54
|
+
self.fastfail = L["ntoskrnl.exe"][0].get("__fastfail", self.arch)
|
|
55
55
|
self.fastfail.addr = self._find_or_make(self.fastfail.display_name)
|
|
56
56
|
self.fastfail.cc = SYSCALL_CC[self.arch.name]["Win32"](self.arch)
|
|
57
57
|
self._syscall_handlers = {self.fastfail.addr: self.fastfail}
|
|
@@ -60,13 +60,13 @@ class SimWindows(SimOS):
|
|
|
60
60
|
super().configure_project()
|
|
61
61
|
|
|
62
62
|
# here are some symbols which we MUST hook, regardless of what the user wants
|
|
63
|
-
self._weak_hook_symbol("GetProcAddress", L["kernel32.dll"].get("GetProcAddress", self.arch))
|
|
64
|
-
self._weak_hook_symbol("LoadLibraryA", L["kernel32.dll"].get("LoadLibraryA", self.arch))
|
|
65
|
-
self._weak_hook_symbol("LoadLibraryExW", L["kernel32.dll"].get("LoadLibraryExW", self.arch))
|
|
63
|
+
self._weak_hook_symbol("GetProcAddress", L["kernel32.dll"][0].get("GetProcAddress", self.arch))
|
|
64
|
+
self._weak_hook_symbol("LoadLibraryA", L["kernel32.dll"][0].get("LoadLibraryA", self.arch))
|
|
65
|
+
self._weak_hook_symbol("LoadLibraryExW", L["kernel32.dll"][0].get("LoadLibraryExW", self.arch))
|
|
66
66
|
|
|
67
67
|
self._exception_handler = self._find_or_make("KiUserExceptionDispatcher")
|
|
68
68
|
self.project.hook(
|
|
69
|
-
self._exception_handler, L["ntdll.dll"].get("KiUserExceptionDispatcher", self.arch), replace=True
|
|
69
|
+
self._exception_handler, L["ntdll.dll"][0].get("KiUserExceptionDispatcher", self.arch), replace=True
|
|
70
70
|
)
|
|
71
71
|
|
|
72
72
|
self.fmode_ptr = self._find_or_make("_fmode")
|
|
@@ -584,7 +584,7 @@ class PagedMemoryMixin(
|
|
|
584
584
|
other_pages = set(other._pages)
|
|
585
585
|
intersection = my_pages.intersection(other_pages)
|
|
586
586
|
difference = my_pages.symmetric_difference(other_pages)
|
|
587
|
-
changes: dict[int, set[int] | None] =
|
|
587
|
+
changes: dict[int, set[int] | None] = dict.fromkeys(difference)
|
|
588
588
|
|
|
589
589
|
for pageno in intersection:
|
|
590
590
|
my_page = self._pages[pageno]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.149
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://angr.io/
|
|
@@ -15,15 +15,15 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
15
15
|
Requires-Python: >=3.10
|
|
16
16
|
Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
|
18
|
-
Requires-Dist:
|
|
18
|
+
Requires-Dist: cxxheaderparser
|
|
19
19
|
Requires-Dist: GitPython
|
|
20
|
-
Requires-Dist: ailment==9.2.
|
|
21
|
-
Requires-Dist: archinfo==9.2.
|
|
20
|
+
Requires-Dist: ailment==9.2.149
|
|
21
|
+
Requires-Dist: archinfo==9.2.149
|
|
22
22
|
Requires-Dist: cachetools
|
|
23
23
|
Requires-Dist: capstone==5.0.3
|
|
24
24
|
Requires-Dist: cffi>=1.14.0
|
|
25
|
-
Requires-Dist: claripy==9.2.
|
|
26
|
-
Requires-Dist: cle==9.2.
|
|
25
|
+
Requires-Dist: claripy==9.2.149
|
|
26
|
+
Requires-Dist: cle==9.2.149
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
28
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
29
29
|
Requires-Dist: protobuf>=5.28.2
|
|
@@ -31,7 +31,7 @@ Requires-Dist: psutil
|
|
|
31
31
|
Requires-Dist: pycparser>=2.18
|
|
32
32
|
Requires-Dist: pydemumble
|
|
33
33
|
Requires-Dist: pyformlang
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.149
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -58,6 +58,7 @@ Requires-Dist: sqlalchemy; extra == "testing"
|
|
|
58
58
|
Requires-Dist: unicorn==2.0.1.post1; extra == "testing"
|
|
59
59
|
Provides-Extra: unicorn
|
|
60
60
|
Requires-Dist: unicorn==2.0.1.post1; extra == "unicorn"
|
|
61
|
+
Dynamic: license-file
|
|
61
62
|
|
|
62
63
|
# angr
|
|
63
64
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=Ym3HSA8r2lJQoCzwuI9cC0p_6MYVsahvZBHHG5LWRtQ,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=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
6
6
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=M7_rO2FZHq680lA5DXwxe99ljBWZe2u-DpoOuFVys9E,100385
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
9
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
10
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
@@ -12,7 +12,7 @@ angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
|
12
12
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
14
14
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
15
|
-
angr/project.py,sha256=
|
|
15
|
+
angr/project.py,sha256=ANJUNPF41_Gs1vH8SC28FktgogurkNdeTH-uqLNPeoQ,37567
|
|
16
16
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
17
17
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
18
18
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
@@ -20,14 +20,14 @@ angr/sim_options.py,sha256=tfl57MFECmA7uvMMtQrRRbpG8g_A9jKOzwY6nApTW6Y,17782
|
|
|
20
20
|
angr/sim_procedure.py,sha256=EfXQEX-Na7iNtoqc2-KQhs7AR3tsiMYnxEF1v_lL_ok,26235
|
|
21
21
|
angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
|
|
22
22
|
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
23
|
-
angr/sim_type.py,sha256=
|
|
23
|
+
angr/sim_type.py,sha256=Q4fiYpordW0ewqBGh5W25weOwwx-mOIUP85GikQ8iS8,136778
|
|
24
24
|
angr/sim_variable.py,sha256=tRQXTCE8GO9V_fjC_umiWOm9rY7JLBjq_zrwKptz20g,16625
|
|
25
25
|
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
26
26
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
27
27
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
28
28
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
29
29
|
angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
|
|
30
|
-
angr/analyses/analysis.py,sha256=
|
|
30
|
+
angr/analyses/analysis.py,sha256=GxbQ5MSXcLRXsEWeUA1dnFclmt5yitVRC1NdLjNraIk,14852
|
|
31
31
|
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
32
32
|
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
33
33
|
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
@@ -51,30 +51,30 @@ angr/analyses/loopfinder.py,sha256=eNH41_3MW10ccwzw6SGsAuILTKttxikDm2e3c-FUlVI,7
|
|
|
51
51
|
angr/analyses/patchfinder.py,sha256=N4J9vQgcaDrCbiPMNopAIPq0uEhJkVhF_usX8HFaXaQ,5046
|
|
52
52
|
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
53
53
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
54
|
-
angr/analyses/reassembler.py,sha256=
|
|
54
|
+
angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
|
|
55
55
|
angr/analyses/s_liveness.py,sha256=K4soSrcQE9pIn7Yf2Lb3LZEu1ymuQVpWzOqLKunFDGQ,7974
|
|
56
56
|
angr/analyses/s_propagator.py,sha256=ChFdiT4wCN0p5mY0UsFGopH3ZH0zM5V_2Ur5cN15Kcc,23667
|
|
57
57
|
angr/analyses/smc.py,sha256=0fvLPUpjlg6GCjYnfSqanXkGYlthmPwqMYR-ZYBHsbo,5075
|
|
58
58
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
59
|
-
angr/analyses/stack_pointer_tracker.py,sha256=
|
|
60
|
-
angr/analyses/static_hooker.py,sha256=
|
|
59
|
+
angr/analyses/stack_pointer_tracker.py,sha256=NoFUWzwPhmHztB3P3jESLTshkuV_4oBQkstnFcZwlVk,37710
|
|
60
|
+
angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
|
|
61
61
|
angr/analyses/veritesting.py,sha256=M6WNsbgiv4ScFPQIaFzujNFya66rQ9GSieaRLuC6RSo,25062
|
|
62
62
|
angr/analyses/vfg.py,sha256=04X_mup9P82bkQIXMju3_DBPPJB1TytA_7RR9uAu3tU,72868
|
|
63
63
|
angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,16136
|
|
64
64
|
angr/analyses/vtable.py,sha256=1Ed7jzr99rk9VgOGzcxBw_6GFqby5mIdSTGPqQPhcZM,3872
|
|
65
65
|
angr/analyses/xrefs.py,sha256=vs6cpVmwXHOmxrI9lJUwCRMYbPSqvIQXS5_fINMaOGI,10290
|
|
66
66
|
angr/analyses/calling_convention/__init__.py,sha256=bK5VS6AxT5l86LAhTL7l1HUT9IuvXG9x9ikbIohIFoE,194
|
|
67
|
-
angr/analyses/calling_convention/calling_convention.py,sha256=
|
|
68
|
-
angr/analyses/calling_convention/fact_collector.py,sha256=
|
|
69
|
-
angr/analyses/calling_convention/utils.py,sha256=
|
|
67
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=GpXdhHYDK8nW8Xnma8-iJWaqAIO6o0aykI6QEXrghHo,46229
|
|
68
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=dIQGPHHFDNGgAcx6w4cGmjsdxKEZyu_JFBc8tsk2kWw,28885
|
|
69
|
+
angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
|
|
70
70
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
71
71
|
angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,15367
|
|
72
72
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
73
73
|
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
74
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
75
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=
|
|
76
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
77
|
-
angr/analyses/cfg/cfg_fast_soot.py,sha256=
|
|
74
|
+
angr/analyses/cfg/cfg_base.py,sha256=o4uG2ob88DdVcDvA9sdjDUo7GPKt9ERXJEgWnKiWDdA,123440
|
|
75
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=wL0ABJMZ8EwKbNjrpE_eqCkZpHDt4y6lmoQOmAIcJMQ,148235
|
|
76
|
+
angr/analyses/cfg/cfg_fast.py,sha256=1aQtubXAXkw3tCfxRjUD2BXSlRH1obMbmaDQvs9qrzo,228422
|
|
77
|
+
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
78
78
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
79
79
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
80
80
|
angr/analyses/cfg/indirect_jump_resolvers/amd64_elf_got.py,sha256=_nyJPqXKtzse0LZc6O1uxDIAqkKlSrkTTrsJaZ2GH0U,2070
|
|
@@ -101,14 +101,14 @@ angr/analyses/data_dep/data_dependency_analysis.py,sha256=_vQPkw1NMrzD7kAFeotOaa
|
|
|
101
101
|
angr/analyses/data_dep/dep_nodes.py,sha256=LcNcxeuKXMMc0GkmvKqqFwNlAk3GhzBR8ixM4CD305k,4640
|
|
102
102
|
angr/analyses/data_dep/sim_act_location.py,sha256=EXmfFF3lV9XogcB2gFRMUoJCbjpDYiSKNyfafkBfiY8,1564
|
|
103
103
|
angr/analyses/decompiler/__init__.py,sha256=eyxt2UKvPkbuS_l_1GPb0CJ6hrj2wTavh-mVf23wwiQ,1162
|
|
104
|
-
angr/analyses/decompiler/ail_simplifier.py,sha256=
|
|
104
|
+
angr/analyses/decompiler/ail_simplifier.py,sha256=BWMyuu_Y9ZKTtbykOo3xe7A8M3z9twXbc_2DUfNx7qo,79900
|
|
105
105
|
angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfCZ2j8esWT4Ka3KI,1630
|
|
106
106
|
angr/analyses/decompiler/block_io_finder.py,sha256=xMwG8Bi69OGNYVs0U0F4yxM8kEsnyrsMrf0gEr8dOEw,10923
|
|
107
107
|
angr/analyses/decompiler/block_similarity.py,sha256=SseCdWgh-kS9q_C_BRxlQ4OwCRQfg-9IyncxKXm_OG8,6849
|
|
108
|
-
angr/analyses/decompiler/block_simplifier.py,sha256=
|
|
109
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
110
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
111
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
108
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=Di5UXgBIXp0pa3_ubHY4k9vj927xAFR3oCUZ16Q3WvE,14229
|
|
109
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=ZjtLdxDCLS0WPqOik9bCek2LyuAtQNYA4V-yqGLeENo,23032
|
|
110
|
+
angr/analyses/decompiler/clinic.py,sha256=b6H-t_uxGE21zXujPpyKk3fSg17waZEYo2BiQ0Zaneg,140692
|
|
111
|
+
angr/analyses/decompiler/condition_processor.py,sha256=61VDwVA1e-oKsv0N8kvh3c5QOdQixrkBZcm3RLuw7KU,52679
|
|
112
112
|
angr/analyses/decompiler/decompilation_cache.py,sha256=oNkeyrEXhyinrN7-fKeDEuGP6I_oAclGjRS4Aa36FoE,1488
|
|
113
113
|
angr/analyses/decompiler/decompilation_options.py,sha256=NDB67DI1L-stvJ4b1eQkfV26HgDJ_rG9-6PEv08G9-8,8195
|
|
114
114
|
angr/analyses/decompiler/decompiler.py,sha256=qbYhdYbWxkbyHYf3D4py7ehXvsOUbXWgz7aCtTXixRE,29828
|
|
@@ -126,14 +126,14 @@ angr/analyses/decompiler/return_maker.py,sha256=pKn9_y5VXqTeJnD5uzLLd9sH_Dp_9wkP
|
|
|
126
126
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=bB-1m8oBO59AlAp6izAROks3BBxFW8zigLlrIMt6Yfs,564
|
|
127
127
|
angr/analyses/decompiler/sequence_walker.py,sha256=FsTQSMAm28xOdI0tbLS0UE51jDNBn0yR8etWmKqeoVw,9898
|
|
128
128
|
angr/analyses/decompiler/stack_item.py,sha256=4HpYE54sOnODzMLrNX1m-Mb9RlQYjojJqNKjjDz9jxU,814
|
|
129
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
129
|
+
angr/analyses/decompiler/utils.py,sha256=ih3wuaw_-_LMyAht_zeAH3dXgFesFH0HJdO3zA051Vk,39870
|
|
130
130
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
131
131
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=llCGH-p9AzfECO_fWTsSUYhX1SzIUr1BKRDTLfc8aXs,23426
|
|
132
132
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=VbCENcybYUGrBD6U1Bp4nonNeEf05z_qhrpHBcyJw_4,496
|
|
133
133
|
angr/analyses/decompiler/ccall_rewriters/x86_ccalls.py,sha256=3osgrQXaq4ArvnJNOChvzaNtovahEjfEl7igPddh-0c,2499
|
|
134
134
|
angr/analyses/decompiler/counters/__init__.py,sha256=UT5K0cWgkVTAXZxy1qBBzrQip3YR2BOBVpxlAuNlt5o,480
|
|
135
135
|
angr/analyses/decompiler/counters/boolean_counter.py,sha256=7htcU99D0fR_aDMi8p2MVuYqJRLDxZWAT29JlQSX6z4,873
|
|
136
|
-
angr/analyses/decompiler/counters/call_counter.py,sha256=
|
|
136
|
+
angr/analyses/decompiler/counters/call_counter.py,sha256=9zGhDElg-74EFL0ZVF7XaxDNzwWaSs5Vd2BDKthdFGU,1407
|
|
137
137
|
angr/analyses/decompiler/counters/expression_counters.py,sha256=DFhe2hpYBgoF-ASALpzVsNJwM4MiNQcrpNKsmXslri8,2850
|
|
138
138
|
angr/analyses/decompiler/counters/seq_cf_structure_counter.py,sha256=P1nQOPo9p4hFg9kHEhJloUbN97UUUcFPaD8edGjl-MI,2320
|
|
139
139
|
angr/analyses/decompiler/dephication/__init__.py,sha256=xd6YSsoXLKVB2g52l-TZGsDwN5Vm3p4b35lqAYcrlhU,280
|
|
@@ -141,27 +141,29 @@ angr/analyses/decompiler/dephication/dephication_base.py,sha256=9HdE_zKnakLSYJZr
|
|
|
141
141
|
angr/analyses/decompiler/dephication/graph_dephication.py,sha256=xjm_OrWgcuDIoDCEAhbW4xGzCHwOPw9ya8IroZH3qf4,2169
|
|
142
142
|
angr/analyses/decompiler/dephication/graph_rewriting.py,sha256=vhBGSu1VN2Yl7eethD5fiatHPOjGNs4JSov5x-SMFFw,3400
|
|
143
143
|
angr/analyses/decompiler/dephication/graph_vvar_mapping.py,sha256=Pd9CETFFRuCS72dAjYlH4tqq7hzzx4CiWTSR6giDjdE,13931
|
|
144
|
-
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=
|
|
144
|
+
angr/analyses/decompiler/dephication/rewriting_engine.py,sha256=Sub1-9Z_tXu8vZJJPDphwwrJNgA2bC9RcrGJObd5GrA,16018
|
|
145
145
|
angr/analyses/decompiler/dephication/seqnode_dephication.py,sha256=Y5On7C6glk3VztwbQFzKYlTTRf2vu9bB5fcRH3rbuhQ,4802
|
|
146
|
-
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=
|
|
147
|
-
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=
|
|
146
|
+
angr/analyses/decompiler/optimization_passes/__init__.py,sha256=y7ND9Wg98M5SoMGuOespoLeh1s-wFqKyeW2_4esDsiw,5236
|
|
147
|
+
angr/analyses/decompiler/optimization_passes/base_ptr_save_simplifier.py,sha256=4IITiIXYK1p1D1_ynr32kdnwKgJwj0Zs0jN4DZXtSgQ,5978
|
|
148
148
|
angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo62dAMrm-3V4DfEDxT6kwXxuks10bcTtW9C_tA,1320
|
|
149
149
|
angr/analyses/decompiler/optimization_passes/code_motion.py,sha256=7o6lf-qahXv5H8jLqEASVXHaz-_PGo3r6l7qH5PbDtU,15343
|
|
150
150
|
angr/analyses/decompiler/optimization_passes/condition_constprop.py,sha256=8uU6jDkwgPwX0JtO0dmygtN8lYbV-a5q2ghC_lzrULw,8762
|
|
151
151
|
angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=z9owQb8xNtIaVZddpFY1quHQOPEbBRnuQvmXEyiPHo0,10490
|
|
152
|
-
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256
|
|
152
|
+
angr/analyses/decompiler/optimization_passes/const_prop_reverter.py,sha256=N8pDb1WmIETjF8qb47YZEX8EPDbGVs9HmWxHxF0bGi0,13243
|
|
153
153
|
angr/analyses/decompiler/optimization_passes/cross_jump_reverter.py,sha256=DzvgsAhU4GqvS0yN0Q2JezkJAuo2KInCgZ7fsB-ibz4,4021
|
|
154
154
|
angr/analyses/decompiler/optimization_passes/deadblock_remover.py,sha256=yqW4Ba4Kw7Bf_HqyACLhdsuj2XQhiSXjd02f7Wubf2A,2707
|
|
155
|
+
angr/analyses/decompiler/optimization_passes/determine_load_sizes.py,sha256=oc_sz2NmGy5SZEpO2Alv9HOOORqpn4tPcmwzHbbPfGI,2231
|
|
155
156
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
156
|
-
angr/analyses/decompiler/optimization_passes/
|
|
157
|
+
angr/analyses/decompiler/optimization_passes/eager_std_string_concatenation.py,sha256=YtzDxrc3k_aWwNbqN_U4QXDJBYhJ66TLRan1NFjs1V0,7072
|
|
158
|
+
angr/analyses/decompiler/optimization_passes/engine_base.py,sha256=YFYerod0qOGYoZdiKCaA8h3-NK3YR8aAw44zYZc8dl0,17287
|
|
157
159
|
angr/analyses/decompiler/optimization_passes/expr_op_swapper.py,sha256=PJMJ0INWiINSkv1eD5QsMJS81XtfuyKqoqe6NTkU120,4715
|
|
158
160
|
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=q2ZOxKQUXUwQNEDjEnj-ji32f6n_XR8M82lr_0ImJdM,5079
|
|
159
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=
|
|
161
|
+
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=AyAJEiResDPqEzNDOb_CbNVJL0xmwgS2mdf3V49_Wng,25446
|
|
160
162
|
angr/analyses/decompiler/optimization_passes/ite_expr_converter.py,sha256=eeKEkoT0WphueWZd5P07cfa9lTBK3BzL0jUyOx4XmJQ,7820
|
|
161
163
|
angr/analyses/decompiler/optimization_passes/ite_region_converter.py,sha256=PE_DnoBzk-86_8nyTPZ8En2ox_o3GQuI-rNJBd2aS-Y,13777
|
|
162
164
|
angr/analyses/decompiler/optimization_passes/lowered_switch_simplifier.py,sha256=2ZHySDpRYCmehdvrtC8u_2MHVV2ehdRv7jmmwa8Z4YY,42063
|
|
163
165
|
angr/analyses/decompiler/optimization_passes/mod_simplifier.py,sha256=BzgSGM39Uv1WAGPM831wLnKW8t-mw9tQoV07ZlxbU_Y,3379
|
|
164
|
-
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=
|
|
166
|
+
angr/analyses/decompiler/optimization_passes/optimization_pass.py,sha256=ZXMxFO9ZTDxrZPUSHpc3tGnMy7nhPYQGq4vkO7se2ic,25909
|
|
165
167
|
angr/analyses/decompiler/optimization_passes/register_save_area_simplifier.py,sha256=GGLVSUZLK9LCqYltDGpS1OB6kaD7t_bz_G7B8ZaLT9g,9072
|
|
166
168
|
angr/analyses/decompiler/optimization_passes/ret_addr_save_simplifier.py,sha256=GIFiYM_C_ChHrD2D1JGRFlE--PU3FOxTqzOX-lXmJLY,6404
|
|
167
169
|
angr/analyses/decompiler/optimization_passes/ret_deduplicator.py,sha256=STMnRyZWiqdoGPa3c7Q4KCHv-JHUdJ2t4oLEltEMpII,7995
|
|
@@ -172,7 +174,7 @@ angr/analyses/decompiler/optimization_passes/stack_canary_simplifier.py,sha256=_
|
|
|
172
174
|
angr/analyses/decompiler/optimization_passes/switch_default_case_duplicator.py,sha256=gvGpjP3t-an8iIBkmPGXob0-aRHL2idGZpd7hErlgFo,6461
|
|
173
175
|
angr/analyses/decompiler/optimization_passes/switch_reused_entry_rewriter.py,sha256=m7ZMkqE2qbl4rl4M_Fi8xS6I1vUaTzUBIzsE6qpbwkM,4020
|
|
174
176
|
angr/analyses/decompiler/optimization_passes/tag_slicer.py,sha256=8_gmoeYgDD1Hb8Rpqcb-01_B4897peDF-J6KA5PjQT8,1176
|
|
175
|
-
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=
|
|
177
|
+
angr/analyses/decompiler/optimization_passes/win_stack_canary_simplifier.py,sha256=6kUfHcHFZblWfl7ohQK3BwIDMc6xtrMLPaLuolMQUac,19469
|
|
176
178
|
angr/analyses/decompiler/optimization_passes/x86_gcc_getpc_simplifier.py,sha256=6NxaX2oT6BMkevb8xt9vlS3Jl-CmSK59F0FVab68B48,3088
|
|
177
179
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/__init__.py,sha256=hTeOdooVDZnBnjiAguD7_BS9YJru8rOiSHN3H0sdzcA,126
|
|
178
180
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/ail_merge_graph.py,sha256=Trp6qkwO_L4oMfdX78ZOoplcIpLV4CV1k_ZimY2IvxA,21658
|
|
@@ -180,7 +182,7 @@ angr/analyses/decompiler/optimization_passes/duplication_reverter/duplication_re
|
|
|
180
182
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/errors.py,sha256=dJq1F3jbGBFWi0zIUmDu8bwUAKPt-JyAh5iegY9rYuU,527
|
|
181
183
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/similarity.py,sha256=V5NDaCYuzoJl-i74JKKV4t9FihXsnmNbki7_4SxJfwo,4406
|
|
182
184
|
angr/analyses/decompiler/optimization_passes/duplication_reverter/utils.py,sha256=szGv6t397GDMIZbn_VS14tAndKUBRF4jYETUMvlVnyU,5145
|
|
183
|
-
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=
|
|
185
|
+
angr/analyses/decompiler/peephole_optimizations/__init__.py,sha256=fA6RITlDQCcldmCMVU23Tfh4Dq0FEdLf4tFjGK5-qzU,4798
|
|
184
186
|
angr/analyses/decompiler/peephole_optimizations/a_div_const_add_a_mul_n_div_const.py,sha256=4iCV9lkADp8lvcPk9vjTwyAG8j5HTBVO9NgBuB7bYhA,1636
|
|
185
187
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_div_shr_const.py,sha256=I_AznhlOZG_RDBOJrGsOamH2piOX7XgqxMSt5zX8HqQ,1374
|
|
186
188
|
angr/analyses/decompiler/peephole_optimizations/a_mul_const_sub_a.py,sha256=noCM779o2T8spHyQn27Wxc0B6efexlwqsNcH8aqls6c,1153
|
|
@@ -190,7 +192,7 @@ angr/analyses/decompiler/peephole_optimizations/a_sub_a_div_const_mul_const.py,s
|
|
|
190
192
|
angr/analyses/decompiler/peephole_optimizations/a_sub_a_shr_const_shr_const.py,sha256=loOM61XWLqkIL_LFQA1PJfz5O3Us5KOPOn2zuTUL_XE,1257
|
|
191
193
|
angr/analyses/decompiler/peephole_optimizations/a_sub_a_sub_n.py,sha256=ZQhLw89LjX-O4Gev5AgWMcdn-QR_wVFLzBO4RI6podY,662
|
|
192
194
|
angr/analyses/decompiler/peephole_optimizations/arm_cmpf.py,sha256=RZhdYP0mJIlVIgGAonlzsYy4At22xjgUd_96swO7rc8,9297
|
|
193
|
-
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=
|
|
195
|
+
angr/analyses/decompiler/peephole_optimizations/base.py,sha256=53T1nH-8VyVDKpGKIlODVj_B8IYsrBkH49fBzTGCGrM,4953
|
|
194
196
|
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_add_n.py,sha256=tE7ejKe2W-KzYtGKEwN22HYmkZ0j0wwo-NYhxdJtPH8,1091
|
|
195
197
|
angr/analyses/decompiler/peephole_optimizations/basepointeroffset_and_mask.py,sha256=Wl1ULOi_zBbIzhlp_C-peqr2cazl1pezzubz50RV74k,1100
|
|
196
198
|
angr/analyses/decompiler/peephole_optimizations/bitwise_or_to_logical_or.py,sha256=bozJ8fGjwYHjz4wS4P5S8y_I_h9WMvp1y9VSraWrBFM,1301
|
|
@@ -200,21 +202,22 @@ angr/analyses/decompiler/peephole_optimizations/cmpord_rewriter.py,sha256=4ERanm
|
|
|
200
202
|
angr/analyses/decompiler/peephole_optimizations/coalesce_adjacent_shrs.py,sha256=xZ129l0U5hoPXtczxZFUfZL59V7d0u2amQTO4phIpQU,1409
|
|
201
203
|
angr/analyses/decompiler/peephole_optimizations/coalesce_same_cascading_ifs.py,sha256=h3m9FIxsMpElPE3ecFfa0vnzuxwG5oJLNEqvLuMpMgI,1062
|
|
202
204
|
angr/analyses/decompiler/peephole_optimizations/const_mull_a_shift.py,sha256=3KTxUUlK74T1bcuufBRgexhDA8M_TAG_2Nqi7e2lZJg,7469
|
|
203
|
-
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=
|
|
205
|
+
angr/analyses/decompiler/peephole_optimizations/constant_derefs.py,sha256=zTaI9ehXGku_4VwBD5SaU6zu7ynjj7S-qChujoJLE7U,1769
|
|
204
206
|
angr/analyses/decompiler/peephole_optimizations/conv_a_sub0_shr_and.py,sha256=6WooyVqwdlMLixGFR8QE0n6GDEC2AluVo4dIr7vwmqY,2379
|
|
205
207
|
angr/analyses/decompiler/peephole_optimizations/conv_shl_shr.py,sha256=5LtXTzPwO_Dtru3UYbr6l8YYylxKrAVZ9q6Gjk1C8sI,2105
|
|
206
208
|
angr/analyses/decompiler/peephole_optimizations/eager_eval.py,sha256=igDQmyEQtOT6KgBH_yfgm_JUBaycHBfytdLV1uxGFVE,17550
|
|
207
209
|
angr/analyses/decompiler/peephole_optimizations/extended_byte_and_mask.py,sha256=r39kiAST4tC-iInTuFgnek0KOljBS3AxS2wPvEpEB58,2044
|
|
208
|
-
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=
|
|
209
|
-
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=
|
|
210
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy.py,sha256=vEaMjyL8--zj17LuHRNmJ2s8rtJHpKaRO4ylMuGSEXc,6452
|
|
211
|
+
angr/analyses/decompiler/peephole_optimizations/inlined_strcpy_consolidation.py,sha256=MgwVvDd2PdPOpQELFGvON20u_Yndlfqof_uK-de8Mbo,4902
|
|
210
212
|
angr/analyses/decompiler/peephole_optimizations/inlined_wstrcpy.py,sha256=Ji4AtQnbBjIXKc3jwlF-eYMYdWZ6gvffUBfUGVlte04,6777
|
|
211
213
|
angr/analyses/decompiler/peephole_optimizations/invert_negated_logical_conjuction_disjunction.py,sha256=xmfB1dnSvzxFzi2W5qv-ehQdD4u0HS9ECC-WEwoTb68,1985
|
|
212
214
|
angr/analyses/decompiler/peephole_optimizations/one_sub_bool.py,sha256=7R_rVBIbk-tFUYU8LMJI2RCtLJuvUMOhUL1jqE9D4u8,1135
|
|
213
215
|
angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,sha256=ut3wAJxwWTW4i4uglNEXrONG5PzNUniBGtUUZ9vmWe4,1815
|
|
216
|
+
angr/analyses/decompiler/peephole_optimizations/remove_cxx_destructor_calls.py,sha256=kxlgTqJhoirFmqlSQ4ylfuMp53VzNFmHWyXHecnYZBI,1000
|
|
214
217
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
215
218
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=v4v56O-fUdhJkR9dqkzK1MgHyNTQ0182hp7TuA6n1G8,1783
|
|
216
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=
|
|
217
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=
|
|
219
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=yoBN96hMH3L_zfcO13GjDzlsnKmTAXpgRjfR395cR18,4221
|
|
220
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=J3FwsGmR93vozXzq9YbJuXPW8I_IYCreEQ8EMeApk0o,9969
|
|
218
221
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
219
222
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
220
223
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=_y3YWya1mbZWx663yrwTCMF9F57JVpIpBrrU6VNNyjQ,1273
|
|
@@ -222,6 +225,8 @@ angr/analyses/decompiler/peephole_optimizations/remove_redundant_reinterprets.py
|
|
|
222
225
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts.py,sha256=7nScYJZpXo9M8hcdu4FSWOGb_5Ey9F_sQhopqCMQooM,3992
|
|
223
226
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_shifts_around_comparators.py,sha256=MHkgIgOMWaAVqe5q4X-yzIxkPzd2KyTngvhxtXorOi4,1605
|
|
224
227
|
angr/analyses/decompiler/peephole_optimizations/rewrite_bit_extractions.py,sha256=DPiL5gstqkiQicWlLABiQwgpUoiunZNGiIg7tUUpAkA,3295
|
|
228
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_conv_mul.py,sha256=ddPWM39VgZHZduUnqj2Zm2vPssVdPUfgDhLNu8HnfQo,1476
|
|
229
|
+
angr/analyses/decompiler/peephole_optimizations/rewrite_cxx_operator_calls.py,sha256=IZrjWh3lZ6no8mt68Tta627oAAk-Pu4LiIxcdWSAZ20,4122
|
|
225
230
|
angr/analyses/decompiler/peephole_optimizations/rewrite_mips_gp_loads.py,sha256=-bENfNstVil2AW-AUsQHr6GTt6TyhISw2jaNpHkheuU,1904
|
|
226
231
|
angr/analyses/decompiler/peephole_optimizations/rol_ror.py,sha256=b1OTZH0mFSPGtlV-a_Gdila38YaVNm1AJX9qtPuyzBA,5134
|
|
227
232
|
angr/analyses/decompiler/peephole_optimizations/sar_to_signed_div.py,sha256=yZ_di2u55BiyjTfZatW5pQoqA5g3dbOXaLQv9CxkXhg,5180
|
|
@@ -233,8 +238,8 @@ angr/analyses/decompiler/peephole_optimizations/tidy_stack_addr.py,sha256=RRzuc2
|
|
|
233
238
|
angr/analyses/decompiler/peephole_optimizations/utils.py,sha256=AjnndY2RIRg9R2vzVnEleq_IJgbtBPK3NlfK5vM0UYw,719
|
|
234
239
|
angr/analyses/decompiler/presets/__init__.py,sha256=NWARH5yOyBz4-5qKhzH56PNfPNRViNKMDeESlpplFxo,375
|
|
235
240
|
angr/analyses/decompiler/presets/basic.py,sha256=KDHlMq_XWonN2-JIYYVIhbI6FbfzXttmkgXFrwi5MiA,803
|
|
236
|
-
angr/analyses/decompiler/presets/fast.py,sha256=
|
|
237
|
-
angr/analyses/decompiler/presets/full.py,sha256=
|
|
241
|
+
angr/analyses/decompiler/presets/fast.py,sha256=52ZiYOp165AaCjRok6P7WP9HCzMMYgWX8kMQgTNKkTw,1542
|
|
242
|
+
angr/analyses/decompiler/presets/full.py,sha256=NbyJ3h589kWlYL6uDz6rv0R9gkGqX2TF0i-OLZM3Jb4,1786
|
|
238
243
|
angr/analyses/decompiler/presets/preset.py,sha256=sTK5fJfx_Cdx0Gjn7y4bOrDp-2eFPeg1e1d5Eyc9uXk,1256
|
|
239
244
|
angr/analyses/decompiler/region_simplifiers/__init__.py,sha256=BSD9osrReTEdapOMmyI1kFiN7AmE1EeJGLBV7i0u-Uc,117
|
|
240
245
|
angr/analyses/decompiler/region_simplifiers/cascading_cond_transformer.py,sha256=qLs1LxEYHdPrh5c33IdkHJqtjBU7z4Sz6fxOK4Fn0Oc,3816
|
|
@@ -250,27 +255,27 @@ angr/analyses/decompiler/region_simplifiers/switch_cluster_simplifier.py,sha256=
|
|
|
250
255
|
angr/analyses/decompiler/region_simplifiers/switch_expr_simplifier.py,sha256=CngQ_LSACeEVIjuU6kIW2Y0ZSMJWFBwpL95Yh_7w3O4,3335
|
|
251
256
|
angr/analyses/decompiler/ssailification/__init__.py,sha256=zcHoI7e2El2RSU_bHTpQRd1XRLHOfFScG6f3cm5y_lQ,108
|
|
252
257
|
angr/analyses/decompiler/ssailification/rewriting.py,sha256=JW_StoLWuDs2LGyG8XjRUbzvQl7-7s2B8j1GKVaYoDo,15045
|
|
253
|
-
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=
|
|
258
|
+
angr/analyses/decompiler/ssailification/rewriting_engine.py,sha256=mcEQqX9MAPw8tpReACG4MrXDzc6d5z43d9lio565fvA,39327
|
|
254
259
|
angr/analyses/decompiler/ssailification/rewriting_state.py,sha256=L7apDXQLPiItuLdQFoQdut5RMUE8MRV1zRc3CsnuH6E,1883
|
|
255
|
-
angr/analyses/decompiler/ssailification/ssailification.py,sha256=
|
|
260
|
+
angr/analyses/decompiler/ssailification/ssailification.py,sha256=GC8ue6Ywxtv0xG1XmxRUZz1HFpc19iOGk05yAsXRNvw,11035
|
|
256
261
|
angr/analyses/decompiler/ssailification/traversal.py,sha256=kZcua4SlDZ8u4EIkjc1Qh85EEYGX63PZ2NYPNq78Kzs,4011
|
|
257
|
-
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=
|
|
262
|
+
angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=wDXSAwA0jF7K49lh72kl30W-Xxs6eYFQJ-u2Ad-tmnY,11126
|
|
258
263
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
259
264
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
260
265
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
261
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
266
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=IWOsy9St6_jd9fkNb4c4GVIpFZxtY6LJe7u2ngUpJ34,147855
|
|
262
267
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
263
268
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
264
269
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
265
270
|
angr/analyses/decompiler/structuring/dream.py,sha256=WOvtyQ0ZRABfF2bSQz1kcB_X3KHCL4x3QrJA6YNbgUc,48720
|
|
266
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
271
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=4GmQno5KlL4h8A6SPWsf_5QTGbXHw3_8BVcoJRNLDKw,138321
|
|
267
272
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=4lHkzsEDSGsiEHrAImaJ4cQOmoZes87_GDSzOby90Rc,7219
|
|
268
273
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
269
274
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=3TBpv5gE7CfUrRd1TihDDqMVUJnMstO6v6PXJYAOlpA,47399
|
|
270
275
|
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x1lnHOSaOoQsXJQvHi0jnMe3SdaFUU9tY1mX0Sx6JUI,12318
|
|
271
276
|
angr/analyses/deobfuscator/__init__.py,sha256=7DgTLEs8P6fWJYkMcAjxnS4jjBDX2jJr8bjYvsTua2c,648
|
|
272
|
-
angr/analyses/deobfuscator/api_obf_finder.py,sha256=
|
|
273
|
-
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=
|
|
277
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
|
|
278
|
+
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=pyWZgSUyHQ2bnD9Kt3P8fDVwH1QsYrtf2UQJKHVyzVo,2210
|
|
274
279
|
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
275
280
|
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
276
281
|
angr/analyses/deobfuscator/string_obf_finder.py,sha256=bCd5Weos3Xn5nQUdoQfq2MioouTP-DdN0LUmxxmMK3s,36440
|
|
@@ -293,7 +298,7 @@ angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2r
|
|
|
293
298
|
angr/analyses/forward_analysis/visitors/__init__.py,sha256=GkGwTjU25YLDaKgrvWuOZwMq32DdOEbmQ9wTOCJQRaA,327
|
|
294
299
|
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
295
300
|
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=8MoSd3v4ztU4buvDzaLmlE8prcOFrS6k1ds4uREadYA,2737
|
|
296
|
-
angr/analyses/forward_analysis/visitors/graph.py,sha256=
|
|
301
|
+
angr/analyses/forward_analysis/visitors/graph.py,sha256=jsNSspZGRjtp9rsewA3qtBhVduJTR8WAK5rLNQOnlfQ,7788
|
|
297
302
|
angr/analyses/forward_analysis/visitors/loop.py,sha256=jB5gTmnVweu4Zs-TsSlYO0FIOykwx2XOPt9naFImzpo,746
|
|
298
303
|
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=BKfsY6yhR3qxBmGLcC6Ct-eAOG_L6MVOUwCl91u_x8Y,785
|
|
299
304
|
angr/analyses/identifier/__init__.py,sha256=82MTyuTZqSyaGz8iIMkkoTm-nIpQfXcoYDiifDuMLfk,96
|
|
@@ -301,7 +306,7 @@ angr/analyses/identifier/custom_callable.py,sha256=3Lg29e-cLyRJmiX4vT65rU464xLh7
|
|
|
301
306
|
angr/analyses/identifier/errors.py,sha256=xVDh09xs7TQQBq7Y1ijdVqsclhgBNbIt61o4Lba-lVI,194
|
|
302
307
|
angr/analyses/identifier/func.py,sha256=0GfuxhiIYpm-x0-SRZ3CpsXBExQGk0Wp9o9r1SrcSKo,1780
|
|
303
308
|
angr/analyses/identifier/identify.py,sha256=w2nsv6YBXBFibsGk5yvsoVDO4Mp6Y-ga6jaG6ztp4q4,32657
|
|
304
|
-
angr/analyses/identifier/runner.py,sha256=
|
|
309
|
+
angr/analyses/identifier/runner.py,sha256=1X8lo2ZTBSJcK9fOkTE1ox-HtdgTwKDQPH-bABfvObo,13760
|
|
305
310
|
angr/analyses/identifier/functions/__init__.py,sha256=mMMRS5wAMgy9yazu7tiMWzp-vTQ5UToyba_X7PogA-Y,1080
|
|
306
311
|
angr/analyses/identifier/functions/atoi.py,sha256=4ccnAkkUydyG_c-kvjyT_PLZfSqv_XSJIBQZ8zataC0,2125
|
|
307
312
|
angr/analyses/identifier/functions/based_atoi.py,sha256=snS0mY0XdIZ_0cSo8mzCN1pxA6HKGrujL0QOlqTN3qk,3272
|
|
@@ -339,7 +344,7 @@ angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquq
|
|
|
339
344
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=BvLsafjUOf5N0aoDYFb0IAzBKIWF0DzYRZVYZd8Bjfc,45861
|
|
340
345
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=K486MkRAvTcTFD52pJtmjWbuVw7KURtGCEC0EDhJmRk,45601
|
|
341
346
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
347
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=ZwtBHoAAocYIIUYVjg51sG7ejdmTnXrQzbYlUgkDKXA,29105
|
|
343
348
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
344
349
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
345
350
|
angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
|
|
@@ -352,15 +357,15 @@ angr/analyses/reaching_definitions/function_handler_library/string.py,sha256=BHg
|
|
|
352
357
|
angr/analyses/reaching_definitions/function_handler_library/unistd.py,sha256=cKBMwwzKlwTzmmVR-EU5AhFnMbJuDVf45GgA5b-K7Jg,1916
|
|
353
358
|
angr/analyses/s_reaching_definitions/__init__.py,sha256=TyfVplxkJj8FAAAw9wegzJlcrbGwlFpIB23PdCcwrLA,254
|
|
354
359
|
angr/analyses/s_reaching_definitions/s_rda_model.py,sha256=olgGRhPVEtw1Y38Z_uNBZANoguOu-X8Ud84q2nquUbk,5718
|
|
355
|
-
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=
|
|
360
|
+
angr/analyses/s_reaching_definitions/s_rda_view.py,sha256=_HJsuuy62J2ut_aFLQKFRQ3y3l6Yr2AD73k-35fQuTo,13687
|
|
356
361
|
angr/analyses/s_reaching_definitions/s_reaching_definitions.py,sha256=_SooCn9qpwwCLsZ8end3Gos6XZbzjiBjWVjxG-VaNso,7596
|
|
357
362
|
angr/analyses/typehoon/__init__.py,sha256=KjKBUZadAd3grXUy48_qO0L4Me-riSqPGteVDcTL59M,92
|
|
358
363
|
angr/analyses/typehoon/dfa.py,sha256=41lzhE-QmkC342SjfaaPI41lr4Au5XROTu_7oenvg7g,3823
|
|
359
|
-
angr/analyses/typehoon/lifter.py,sha256=
|
|
360
|
-
angr/analyses/typehoon/simple_solver.py,sha256=
|
|
361
|
-
angr/analyses/typehoon/translator.py,sha256
|
|
362
|
-
angr/analyses/typehoon/typeconsts.py,sha256=
|
|
363
|
-
angr/analyses/typehoon/typehoon.py,sha256=
|
|
364
|
+
angr/analyses/typehoon/lifter.py,sha256=hxYJmM_A0Kl6YgY7NyWBtA3ieaY49Ey3ESCHC61lMys,4000
|
|
365
|
+
angr/analyses/typehoon/simple_solver.py,sha256=w1qiSIFYWsQMqyayMzDRNZKH6xRnDdXyCi08dA_eCoI,54842
|
|
366
|
+
angr/analyses/typehoon/translator.py,sha256=_UE1JC4KNDXXl4plula9OApK1ee07z9BFdX9HKa5uqw,10568
|
|
367
|
+
angr/analyses/typehoon/typeconsts.py,sha256=jQEVziyt3LnctrSrCtbUSPi-0tjl8DKoLMFfaOEG3lI,7939
|
|
368
|
+
angr/analyses/typehoon/typehoon.py,sha256=dBnbovH79sxTTgdGgRkQV2GzIRwxwUB-mhe_pG4TyZM,11981
|
|
364
369
|
angr/analyses/typehoon/typevars.py,sha256=cvbeeEDapb0LgGgtgUVpbhAcfuaylk7vEiwCqPxvtQo,16332
|
|
365
370
|
angr/analyses/typehoon/variance.py,sha256=3wYw3of8uoar-MQ7gD6arALiwlJRW990t0BUqMarXIY,193
|
|
366
371
|
angr/analyses/unpacker/__init__.py,sha256=tBXwDMFKN0Hp8YP0DK-c6deo0Muc_LNopvoKKbzp3Tc,190
|
|
@@ -368,13 +373,13 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
368
373
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
369
374
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
370
375
|
angr/analyses/variable_recovery/annotations.py,sha256=2va7cXnRHYqVqXeVt00QanxfAo3zanL4BkAcC0-Bk20,1438
|
|
371
|
-
angr/analyses/variable_recovery/engine_ail.py,sha256=
|
|
372
|
-
angr/analyses/variable_recovery/engine_base.py,sha256=
|
|
376
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=sFwIrUmfH1DCV9QMgPPYQdHre_svLhZXGGl7ow4WBvo,33700
|
|
377
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=HFv-grnBD8ubSfDykn3-mLegVwn6T0SgCE3F7sgOxs8,52348
|
|
373
378
|
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
374
379
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
375
380
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
376
381
|
angr/analyses/variable_recovery/variable_recovery_base.py,sha256=cJsc64ev_UmWTb2KNTdRF3HtpZyh4J2CEgnUAlH2MVg,15181
|
|
377
|
-
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=
|
|
382
|
+
angr/analyses/variable_recovery/variable_recovery_fast.py,sha256=JP_YSj2b9B4BS7u-c6x-Kyc4IjXoRwBAg8hZkpuGax8,27637
|
|
378
383
|
angr/angrdb/__init__.py,sha256=Jin6JjtVadtqsgm_a6gQGx3Hn7BblkbJvdcl_GwZshg,307
|
|
379
384
|
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
380
385
|
angr/angrdb/models.py,sha256=5Akv-fIjk3E2YHymEWu_nrbE8aQ9l75zOAaSIDEzeTQ,4794
|
|
@@ -418,7 +423,7 @@ angr/engines/syscall.py,sha256=7wYTriURsDTTi3PEBj4u3ZWDi7RHBV-gRrxTRxwMAVk,2166
|
|
|
418
423
|
angr/engines/unicorn.py,sha256=fq2akQ4dVFAWqek0Yr4JTaTJWwp5vICiSQ7Sg4wuDJE,24533
|
|
419
424
|
angr/engines/light/__init__.py,sha256=-634kaOlcs8ZAsMNtOML7FXP3svyZIrJb3ikq0isFv0,494
|
|
420
425
|
angr/engines/light/data.py,sha256=3bvC-7e6isb4aGM7IrdpZelJDSWQ0KflC-oNpCDT7tI,21243
|
|
421
|
-
angr/engines/light/engine.py,sha256=
|
|
426
|
+
angr/engines/light/engine.py,sha256=MSfHP-VFNbV6MqZTMOzQMMLsO91wesG49tYSOaalZ0E,46210
|
|
422
427
|
angr/engines/pcode/__init__.py,sha256=KWBnZnLYR3qANzXvxOt3XJq6cR57mQeNvugPBh7gr8s,195
|
|
423
428
|
angr/engines/pcode/behavior.py,sha256=ycNNTNHlCJFG6fPtOwRHbI3c0fkY5pYyPA--k3Kz-WY,29406
|
|
424
429
|
angr/engines/pcode/cc.py,sha256=brVglfSNnpDbRRcG-KO9EZ5NMMlmtDzP1n4kap7gKRY,3236
|
|
@@ -493,7 +498,7 @@ angr/exploration_techniques/base.py,sha256=AoM5IInQExOxC5sHdm_ZNj2HxQE3QeBVzZWVQ
|
|
|
493
498
|
angr/exploration_techniques/bucketizer.py,sha256=BvkBr5SBbWHT6Z1G8AJaNA7BmN9NqRmyr1J98yQ6Ou0,2563
|
|
494
499
|
angr/exploration_techniques/common.py,sha256=_FmR6IxiCm_lal1rP6382r-1hCj-EirDsq_eQdD3x3s,2277
|
|
495
500
|
angr/exploration_techniques/dfs.py,sha256=_pPa8qdusyGN_98FSmqEDNKrDWsBYVJb7Swn55Ngbh8,1208
|
|
496
|
-
angr/exploration_techniques/director.py,sha256=
|
|
501
|
+
angr/exploration_techniques/director.py,sha256=sdqTSCNoieBWln7egJBh7gkJoZAo7zpWC2telwEsn1w,17865
|
|
497
502
|
angr/exploration_techniques/driller_core.py,sha256=VoTeui1DkqmQLRungOwGaZ_xrpnG2U27WEspvBJ_j8U,3468
|
|
498
503
|
angr/exploration_techniques/explorer.py,sha256=_SKBIFX-YDd71aIAJaV9MwCZt64wUvvZmZiBjrjuruk,6243
|
|
499
504
|
angr/exploration_techniques/lengthlimiter.py,sha256=To8SlXhtdDVSqAlCSIvhvqyY8BUs37ZU7ABymhJDz14,590
|
|
@@ -536,17 +541,17 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
536
541
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
537
542
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
538
543
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
539
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
540
|
-
angr/knowledge_plugins/functions/function_manager.py,sha256=
|
|
541
|
-
angr/knowledge_plugins/functions/function_parser.py,sha256=
|
|
542
|
-
angr/knowledge_plugins/functions/soot_function.py,sha256=
|
|
544
|
+
angr/knowledge_plugins/functions/function.py,sha256=SGQ3DnGJF0ps3P4mV_ohnMjdwmVVeAwNuxyPfwLAu00,70456
|
|
545
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=YWp9Hc-Rx9iYChJ3hFv9Tjat-6ZUidv1xsSZLQ2tL9Q,20469
|
|
546
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
547
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
543
548
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
544
549
|
angr/knowledge_plugins/key_definitions/atoms.py,sha256=ydXrPGPCFSMk1JR24qZfPy1xAVOAsc2Isc-QoZPm8Kg,11133
|
|
545
550
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=n1h_yQbwD9qUOmuBFRNZOljeryMv1iOeZAE2ctKdJ5w,661
|
|
546
551
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=AAePJW3BYV0Ju3ZFdqVJdQebPAkB1ASdTiuU9sRqzn4,8574
|
|
547
552
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
548
553
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
549
|
-
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=
|
|
554
|
+
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=LYLFUutUqWB1jSOjWh7b_JQtIaT08duv8_TUZIt5R-k,3313
|
|
550
555
|
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=IAoU_k_vx4AOHdXqv88FQv30AyFhzUNZkn9zwiehJ38,38572
|
|
551
556
|
angr/knowledge_plugins/key_definitions/liveness.py,sha256=FtbfnQTtILx3a3j21MKVVuZX4lN3x7n6ccYuIVDo2CY,6933
|
|
552
557
|
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
@@ -558,15 +563,15 @@ angr/knowledge_plugins/propagations/__init__.py,sha256=tG2ER9gilu212YgjfNB7-J8cL
|
|
|
558
563
|
angr/knowledge_plugins/propagations/prop_value.py,sha256=loURoe_TmLKaVh5zNXwr4oDQRewAuVbX8EmswRZFaXM,7581
|
|
559
564
|
angr/knowledge_plugins/propagations/propagation_manager.py,sha256=uBzSgMNck1tc-LTjtxztP_CPP8Yzo6-OuLKDO7xBE1g,2107
|
|
560
565
|
angr/knowledge_plugins/propagations/propagation_model.py,sha256=5ehnHl--YL_YLiOcAuAd9OqY6woWl9p8dqmmb8Cn6M0,2591
|
|
561
|
-
angr/knowledge_plugins/propagations/states.py,sha256=
|
|
566
|
+
angr/knowledge_plugins/propagations/states.py,sha256=GIrAeYDcW75iEGg5j9MUy50ocjLSCfewBiLn8FFfXzA,18940
|
|
562
567
|
angr/knowledge_plugins/variables/__init__.py,sha256=7UnBITiTA-k3QsxRv7DdDWBu30XlFprldPxlTS4GbdE,154
|
|
563
568
|
angr/knowledge_plugins/variables/variable_access.py,sha256=brlZgrdtUW7GI8NQMjtuBVwcqxGE0E4nHW9tD1sTmXs,3719
|
|
564
|
-
angr/knowledge_plugins/variables/variable_manager.py,sha256=
|
|
569
|
+
angr/knowledge_plugins/variables/variable_manager.py,sha256=u9B-rm6Gjc1P3IGNfcPS_oCiOmcwCAXVUDQp8-goFsY,51380
|
|
565
570
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
566
571
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
567
572
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
568
573
|
angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnCrpYO4mOzILiKI,308
|
|
569
|
-
angr/lib/angr_native.dll,sha256=
|
|
574
|
+
angr/lib/angr_native.dll,sha256=T9E7t38exeof-1skly6c8Kqj8wRvunc880zC4rXQWYA,786432
|
|
570
575
|
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
571
576
|
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
572
577
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
@@ -589,7 +594,7 @@ angr/procedures/cgc/fdwait.py,sha256=wknRSRoa1UeLb_59hPhYqYkU6x88p6rf29rhtKBVQiI
|
|
|
589
594
|
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
590
595
|
angr/procedures/cgc/receive.py,sha256=CYxXBnw9CpLfIVn086UuaEvpT4MGEg8otDHtsgf5etY,3668
|
|
591
596
|
angr/procedures/cgc/transmit.py,sha256=SwVCOo_H-_8sZ3qRQ5QT942eNwc2oPoZJr4VyA7Ny2A,2389
|
|
592
|
-
angr/procedures/definitions/__init__.py,sha256=
|
|
597
|
+
angr/procedures/definitions/__init__.py,sha256=96f2EG0ZumyXek8lbsW1hrFD5VMiWD6o46LuDxsWqtk,31941
|
|
593
598
|
angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVkH5jio,508
|
|
594
599
|
angr/procedures/definitions/glibc.py,sha256=L_NvGd20GQqGx2yGPmjfloFmOwQ0_dmA8rpLA6AlpN0,394188
|
|
595
600
|
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
@@ -599,6 +604,7 @@ angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YM
|
|
|
599
604
|
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
600
605
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=ssyMjeyuPVYHnbmArwDPO0XXMW1n5Odv__n17cdLVcY,1823
|
|
601
606
|
angr/procedures/definitions/parse_win32json.py,sha256=dcpZ63xDX5lXyaONOn6pB0_afEBxTPI-w3r0a6sVH3A,110462
|
|
607
|
+
angr/procedures/definitions/types_stl.py,sha256=4fsMlaDLQ7IZfL0jQX4ZvTkqBg5tsoeZAfSwupZm1gI,816
|
|
602
608
|
angr/procedures/definitions/types_win32.py,sha256=Iv1JT_JwzhfUpnxcKMgAwSw_huuwhi_rKkD7NMO8sow,9998099
|
|
603
609
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-4.py,sha256=dC8j-gGlKujHqmTaVvMhgUjvTPEEJ3oZ2h1MODBK7a8,1450
|
|
604
610
|
angr/procedures/definitions/wdk_api-ms-win-dx-d3dkmt-l1-1-6.py,sha256=ay_JhCAB5sn6mKm_l7wjfi7PTqLdKQmHoDNwgdGl5dA,992
|
|
@@ -1204,7 +1210,7 @@ angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bT
|
|
|
1204
1210
|
angr/procedures/stubs/b64_decode.py,sha256=XrTE8etlYtPoB63ErSv7QqBzT9HwnVj9e0IRVReicpU,383
|
|
1205
1211
|
angr/procedures/stubs/caller.py,sha256=c-anKQywa_uohZ4yysUJ_G01S3RjM21nECNy4F_j6YQ,378
|
|
1206
1212
|
angr/procedures/stubs/crazy_scanf.py,sha256=OtbA8l8Gvj-yCFELsEm2R0H9gJIBerW12caD2QFdRnE,654
|
|
1207
|
-
angr/procedures/stubs/format_parser.py,sha256=
|
|
1213
|
+
angr/procedures/stubs/format_parser.py,sha256=6P027c6qhCmOffC7x861W-KRJn6ANxXj7kv8Wvjx9zM,27669
|
|
1208
1214
|
angr/procedures/stubs/syscall_stub.py,sha256=XaxmYrO4T0anV3c0r7DKrGHY8D5mBRBrc-J_m7I6BVA,826
|
|
1209
1215
|
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
1210
1216
|
angr/procedures/testing/manyargs.py,sha256=6HuAjU0fKszwFUWcS_qaYuc4P_lILJiHdQX5xw8q8sk,135
|
|
@@ -1247,19 +1253,19 @@ angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9p
|
|
|
1247
1253
|
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
1248
1254
|
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
1249
1255
|
angr/protos/__init__.py,sha256=VdHXdfTK_wbCsdTJ3umFhWpUKZ9SEQUu9gQsd9TukY8,420
|
|
1250
|
-
angr/protos/cfg_pb2.py,sha256=
|
|
1251
|
-
angr/protos/function_pb2.py,sha256=
|
|
1252
|
-
angr/protos/primitives_pb2.py,sha256=
|
|
1253
|
-
angr/protos/variables_pb2.py,sha256=
|
|
1254
|
-
angr/protos/xrefs_pb2.py,sha256
|
|
1256
|
+
angr/protos/cfg_pb2.py,sha256=MOZ74RcON7lGKjA2RJyjLCpRwHHZ0veEuQOkY_SobSc,2464
|
|
1257
|
+
angr/protos/function_pb2.py,sha256=qH8_xrk6B2nGVosY3oCyWbOT86yYGqLHkuZPOCO8UpM,2097
|
|
1258
|
+
angr/protos/primitives_pb2.py,sha256=Ou3JWw4z-Wa2TFRXrX2neA4gUzlk3oiC3U6rGm6ufj0,5987
|
|
1259
|
+
angr/protos/variables_pb2.py,sha256=fZ0sMXZFrSgs9G7Hzt7zSlDUN5gMKaAcdppsR7TQKF8,4576
|
|
1260
|
+
angr/protos/xrefs_pb2.py,sha256=wznhpgAE5rSVyP_E8wdFZF6OyIYEwtcZ8aq0zx8FXzs,1101
|
|
1255
1261
|
angr/simos/__init__.py,sha256=viflGa2m57GOjuWxFM80osoFZmGEGhA6Ot1ElVau6Xg,1002
|
|
1256
|
-
angr/simos/cgc.py,sha256=
|
|
1262
|
+
angr/simos/cgc.py,sha256=LoBl_csMIVqn7WDqmspqAN5ETnTUoUv4PkVqobxqspU,5592
|
|
1257
1263
|
angr/simos/javavm.py,sha256=xPhWuvSdDG-GskoPPrLRfoJGABQ8J3H6SjpH1VoZTUQ,20566
|
|
1258
|
-
angr/simos/linux.py,sha256=
|
|
1264
|
+
angr/simos/linux.py,sha256=ShLsqFIut1jGuo6NGQSlT7ymoaEEwgTNkloJNN0pDDI,23204
|
|
1259
1265
|
angr/simos/simos.py,sha256=L43oFMGRWiVEpfMWhb_Y_iawsaxm7qw_fG-sfKF344M,18464
|
|
1260
1266
|
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
1261
1267
|
angr/simos/userland.py,sha256=jvHdMocEJAlwrTjupubdGfD6snt_DpQ_pyHrIZyV7NE,7354
|
|
1262
|
-
angr/simos/windows.py,sha256=
|
|
1268
|
+
angr/simos/windows.py,sha256=EneZrucxYgw5wII0FNYIEPjiLnhv0ju_nAEOpk8ssME,27878
|
|
1263
1269
|
angr/simos/xbox.py,sha256=f0IL9ZTgYX8feEck5nBu87bYcehbdmYKQVoze6wsmY0,971
|
|
1264
1270
|
angr/state_plugins/__init__.py,sha256=AOCYC5r6YWswhEhBEdtNDK9d9N_qhAl902UMHyGi8QY,2419
|
|
1265
1271
|
angr/state_plugins/callstack.py,sha256=BMBl0qX10Qxkwl__lVP_Ho8aaQcSJNqvMAiY6csL1y8,11825
|
|
@@ -1326,7 +1332,7 @@ angr/storage/memory_mixins/underconstrained_mixin.py,sha256=pF2p91j0g4MhWMDVcCuL
|
|
|
1326
1332
|
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=KVWgw7bROwsnPs8JN7ugTzGz94NOWuw0ld9KKQhwrN8,1110
|
|
1327
1333
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1328
1334
|
angr/storage/memory_mixins/paged_memory/page_backer_mixins.py,sha256=7DSOkDioqJOqmEgWXO974uD3Ogmhm7m9c4zQ8druZOs,10520
|
|
1329
|
-
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=
|
|
1335
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=E2LNktW8ln2e5ofMfhQlyUjB4XVChkkqVwit32NWamY,29386
|
|
1330
1336
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1331
1337
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=YYFxpXsf9-ALl1x86_Gm71H45jqtdkkgLWPf0twqefU,1578
|
|
1332
1338
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
@@ -1377,9 +1383,9 @@ angr/utils/types.py,sha256=5EDtrusFLf1fIcMz8fgJiPPsUhpEm0bf_oqZ_PSRje0,1836
|
|
|
1377
1383
|
angr/utils/ssa/__init__.py,sha256=ohP9IJh9ZvdVH8nH-ZrYA8hwIi8L98XQ6NMNL6q_pJ0,13649
|
|
1378
1384
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1379
1385
|
angr/utils/ssa/vvar_uses_collector.py,sha256=O2aNZeM5DL8qatyhYuMhgbYGFp6Onm2yr9pKq1wRjA0,1347
|
|
1380
|
-
angr-9.2.
|
|
1381
|
-
angr-9.2.
|
|
1382
|
-
angr-9.2.
|
|
1383
|
-
angr-9.2.
|
|
1384
|
-
angr-9.2.
|
|
1385
|
-
angr-9.2.
|
|
1386
|
+
angr-9.2.149.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
1387
|
+
angr-9.2.149.dist-info/METADATA,sha256=XMCPaPh3nMUsyFDzqFXSi4YplY424Xnv0OMf92TfIis,5033
|
|
1388
|
+
angr-9.2.149.dist-info/WHEEL,sha256=GRAwO4abswPoD8u6X5Ix8yKoy-wTIXRf_V-PAIDNIsM,97
|
|
1389
|
+
angr-9.2.149.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1390
|
+
angr-9.2.149.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1391
|
+
angr-9.2.149.dist-info/RECORD,,
|