angr 9.2.147__py3-none-manylinux2014_x86_64.whl → 9.2.148__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/analysis.py +3 -11
- 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 +12 -12
- angr/analyses/cfg/cfg_fast.py +20 -17
- angr/analyses/cfg/cfg_fast_soot.py +3 -3
- angr/analyses/decompiler/callsite_maker.py +28 -18
- angr/analyses/decompiler/clinic.py +4 -4
- angr/analyses/decompiler/condition_processor.py +0 -21
- angr/analyses/decompiler/counters/call_counter.py +3 -0
- angr/analyses/decompiler/optimization_passes/const_prop_reverter.py +1 -1
- angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py +14 -0
- angr/analyses/decompiler/structured_codegen/c.py +5 -5
- angr/analyses/decompiler/structuring/phoenix.py +11 -3
- angr/analyses/deobfuscator/api_obf_finder.py +5 -1
- angr/analyses/deobfuscator/api_obf_peephole_optimizer.py +1 -1
- angr/analyses/forward_analysis/visitors/graph.py +0 -8
- angr/analyses/identifier/runner.py +1 -1
- angr/analyses/reaching_definitions/function_handler.py +4 -4
- angr/analyses/reassembler.py +1 -1
- angr/analyses/stack_pointer_tracker.py +1 -1
- angr/analyses/static_hooker.py +11 -9
- angr/analyses/variable_recovery/engine_ail.py +8 -8
- angr/analyses/variable_recovery/engine_base.py +2 -0
- angr/calling_conventions.py +74 -23
- angr/exploration_techniques/director.py +1 -1
- angr/knowledge_plugins/functions/function.py +41 -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/procedures/definitions/__init__.py +14 -11
- angr/procedures/stubs/format_parser.py +1 -1
- angr/project.py +23 -29
- angr/protos/cfg_pb2.py +14 -25
- angr/protos/function_pb2.py +11 -22
- angr/protos/primitives_pb2.py +36 -47
- angr/protos/variables_pb2.py +28 -39
- angr/protos/xrefs_pb2.py +8 -19
- angr/sim_type.py +0 -16
- angr/simos/cgc.py +1 -1
- angr/simos/linux.py +5 -5
- angr/simos/windows.py +5 -5
- angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py +1 -1
- {angr-9.2.147.dist-info → angr-9.2.148.dist-info}/METADATA +8 -7
- {angr-9.2.147.dist-info → angr-9.2.148.dist-info}/RECORD +52 -52
- {angr-9.2.147.dist-info → angr-9.2.148.dist-info}/WHEEL +1 -1
- {angr-9.2.147.dist-info → angr-9.2.148.dist-info}/entry_points.txt +0 -0
- {angr-9.2.147.dist-info → angr-9.2.148.dist-info/licenses}/LICENSE +0 -0
- {angr-9.2.147.dist-info → angr-9.2.148.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.148
|
|
4
4
|
Summary: A multi-architecture binary analysis toolkit, with the ability to perform dynamic symbolic execution and various static analyses on binaries
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://angr.io/
|
|
@@ -17,13 +17,13 @@ Description-Content-Type: text/markdown
|
|
|
17
17
|
License-File: LICENSE
|
|
18
18
|
Requires-Dist: CppHeaderParser
|
|
19
19
|
Requires-Dist: GitPython
|
|
20
|
-
Requires-Dist: ailment==9.2.
|
|
21
|
-
Requires-Dist: archinfo==9.2.
|
|
20
|
+
Requires-Dist: ailment==9.2.148
|
|
21
|
+
Requires-Dist: archinfo==9.2.148
|
|
22
22
|
Requires-Dist: cachetools
|
|
23
23
|
Requires-Dist: capstone==5.0.3
|
|
24
24
|
Requires-Dist: cffi>=1.14.0
|
|
25
|
-
Requires-Dist: claripy==9.2.
|
|
26
|
-
Requires-Dist: cle==9.2.
|
|
25
|
+
Requires-Dist: claripy==9.2.148
|
|
26
|
+
Requires-Dist: cle==9.2.148
|
|
27
27
|
Requires-Dist: mulpyplexer
|
|
28
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.148
|
|
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=Rykj7tkd0J0_JFaHWZsEVKA64otf_AaSfwry7_aBW9U,9153
|
|
2
2
|
angr/__main__.py,sha256=XeawhF6Cco9eWcfMTDWzYYggLB3qjnQ87IIeFOplaHM,2873
|
|
3
3
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
4
|
angr/blade.py,sha256=NhesOPloKJC1DQJRv_HBT18X7oNxK16JwAfNz2Lc1o0,15384
|
|
5
5
|
angr/block.py,sha256=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
6
6
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
7
|
-
angr/calling_conventions.py,sha256=
|
|
7
|
+
angr/calling_conventions.py,sha256=ZnkWQaC847QAuuL1pP8H9mMZPac1oHGfDBBEjdhvs7Y,99628
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
9
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
10
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
@@ -12,7 +12,7 @@ angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
|
12
12
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
14
14
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
15
|
-
angr/project.py,sha256=
|
|
15
|
+
angr/project.py,sha256=ANJUNPF41_Gs1vH8SC28FktgogurkNdeTH-uqLNPeoQ,37567
|
|
16
16
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
17
17
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
18
18
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
@@ -20,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=79yPUglvBOTlBvB1-DA3SydDcFFegvEQXY8N0r7kVp4,132169
|
|
24
24
|
angr/sim_variable.py,sha256=tRQXTCE8GO9V_fjC_umiWOm9rY7JLBjq_zrwKptz20g,16625
|
|
25
25
|
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
26
26
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
27
27
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
28
28
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
29
29
|
angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
|
|
30
|
-
angr/analyses/analysis.py,sha256=
|
|
30
|
+
angr/analyses/analysis.py,sha256=GxbQ5MSXcLRXsEWeUA1dnFclmt5yitVRC1NdLjNraIk,14852
|
|
31
31
|
angr/analyses/backward_slice.py,sha256=fdE1GbppXjGufLzfOQkeuIzGX0yx9ISHJlOGqS6m1lg,27218
|
|
32
32
|
angr/analyses/binary_optimizer.py,sha256=xFDv8c1s5nQUKY_EWYRCuVroSXFkMiSLl5LngPiysDA,26145
|
|
33
33
|
angr/analyses/bindiff.py,sha256=ysphJ9cg7yxnW7HxOSLYEohrTdq9ZK-8cVvKQ0U9u9M,64020
|
|
@@ -51,13 +51,13 @@ 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
|
|
@@ -65,16 +65,16 @@ 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
67
|
angr/analyses/calling_convention/calling_convention.py,sha256=pnKjexO6hx53lAvLiPGf7bLRs6eKqv5phSBaDELY-dc,44782
|
|
68
|
-
angr/analyses/calling_convention/fact_collector.py,sha256=
|
|
69
|
-
angr/analyses/calling_convention/utils.py,sha256=
|
|
68
|
+
angr/analyses/calling_convention/fact_collector.py,sha256=dIQGPHHFDNGgAcx6w4cGmjsdxKEZyu_JFBc8tsk2kWw,28885
|
|
69
|
+
angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
|
|
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=fQjhyTWrnBQJEoa7w3pZuOFYI6WI6zG3X78P3ItmEXQ,148123
|
|
76
|
+
angr/analyses/cfg/cfg_fast.py,sha256=uTPVQlfpA3lsNTOUui5HcoN97_pRsiyLm-85ZhheXG8,228108
|
|
77
|
+
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
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
|
|
@@ -106,9 +106,9 @@ angr/analyses/decompiler/ailgraph_walker.py,sha256=m71HCthOr9J8PZoMxJzCPskay8yfC
|
|
|
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
108
|
angr/analyses/decompiler/block_simplifier.py,sha256=Pl7qh9ODO41iXkBsKuB8-1gtjnqr6Qc1b8So2MbrTLM,13537
|
|
109
|
-
angr/analyses/decompiler/callsite_maker.py,sha256=
|
|
110
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
111
|
-
angr/analyses/decompiler/condition_processor.py,sha256=
|
|
109
|
+
angr/analyses/decompiler/callsite_maker.py,sha256=ZjtLdxDCLS0WPqOik9bCek2LyuAtQNYA4V-yqGLeENo,23032
|
|
110
|
+
angr/analyses/decompiler/clinic.py,sha256=d_dx47IgXHlpObFyVmtaRpg5Vmg-7KNxi0KQwVso_kc,138172
|
|
111
|
+
angr/analyses/decompiler/condition_processor.py,sha256=61VDwVA1e-oKsv0N8kvh3c5QOdQixrkBZcm3RLuw7KU,52679
|
|
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
|
|
@@ -133,7 +133,7 @@ angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=VbCENcybYUGrBD6
|
|
|
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
|
|
@@ -149,7 +149,7 @@ angr/analyses/decompiler/optimization_passes/call_stmt_rewriter.py,sha256=G1CEWo
|
|
|
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
155
|
angr/analyses/decompiler/optimization_passes/div_simplifier.py,sha256=fdMyGtykG9QepIUFL2_KN9lqsJFqHsVwNoJ1p8GlQ7A,18739
|
|
@@ -214,7 +214,7 @@ angr/analyses/decompiler/peephole_optimizations/remove_cascading_conversions.py,
|
|
|
214
214
|
angr/analyses/decompiler/peephole_optimizations/remove_empty_if_body.py,sha256=kWgm8IkSU0Puya7uRFaNbUOOTYkXA5V9UD8S3ai_xZc,1602
|
|
215
215
|
angr/analyses/decompiler/peephole_optimizations/remove_noop_conversions.py,sha256=v4v56O-fUdhJkR9dqkzK1MgHyNTQ0182hp7TuA6n1G8,1783
|
|
216
216
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=MsoNtMoaMOtKUKkrBEQSOKlhCy4J9l06BlqpuJchT9Y,1670
|
|
217
|
-
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=
|
|
217
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_conversions.py,sha256=J3FwsGmR93vozXzq9YbJuXPW8I_IYCreEQ8EMeApk0o,9969
|
|
218
218
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_branch.py,sha256=I3BdEwYNCz7vt0BreBhB-m0OD6g0-SxqNFCw5fpE_EM,1128
|
|
219
219
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_ite_comparisons.py,sha256=o5KX_HnE8e_bJCSX2mOomheXRk3EUU0mPbja7w0w8Ns,1878
|
|
220
220
|
angr/analyses/decompiler/peephole_optimizations/remove_redundant_nots.py,sha256=_y3YWya1mbZWx663yrwTCMF9F57JVpIpBrrU6VNNyjQ,1273
|
|
@@ -258,19 +258,19 @@ angr/analyses/decompiler/ssailification/traversal_engine.py,sha256=BiXCqC3M3-rey
|
|
|
258
258
|
angr/analyses/decompiler/ssailification/traversal_state.py,sha256=RDs2mTc6GYnbMom2gBfNfNMcazKMSkhemEmse8uELTY,1558
|
|
259
259
|
angr/analyses/decompiler/structured_codegen/__init__.py,sha256=mxG4yruPAab8735wVgXZ1zu8qFPz-njKe0m5UcywE3o,633
|
|
260
260
|
angr/analyses/decompiler/structured_codegen/base.py,sha256=DEeNrBOC8AAJb-qFyUoYeX8fpHSPmAsutCDF-0UhaQ4,3782
|
|
261
|
-
angr/analyses/decompiler/structured_codegen/c.py,sha256=
|
|
261
|
+
angr/analyses/decompiler/structured_codegen/c.py,sha256=4ySPvb0lOSExNWIPLpsZSDLYWIQbf8ND_EvGUzWAE4s,142752
|
|
262
262
|
angr/analyses/decompiler/structured_codegen/dummy.py,sha256=JZLeovXE-8C-unp2hbejxCG30l-yCx4sWFh7JMF_iRM,570
|
|
263
263
|
angr/analyses/decompiler/structured_codegen/dwarf_import.py,sha256=J6V40RuIyKXN7r6ESftIYfoREgmgFavnUL5m3lyTzlM,7072
|
|
264
264
|
angr/analyses/decompiler/structuring/__init__.py,sha256=kEFP-zv9CZrhJtLTKwT9-9cGVTls71wLYaLDUuYorBU,711
|
|
265
265
|
angr/analyses/decompiler/structuring/dream.py,sha256=WOvtyQ0ZRABfF2bSQz1kcB_X3KHCL4x3QrJA6YNbgUc,48720
|
|
266
|
-
angr/analyses/decompiler/structuring/phoenix.py,sha256=
|
|
266
|
+
angr/analyses/decompiler/structuring/phoenix.py,sha256=4GmQno5KlL4h8A6SPWsf_5QTGbXHw3_8BVcoJRNLDKw,138321
|
|
267
267
|
angr/analyses/decompiler/structuring/recursive_structurer.py,sha256=4lHkzsEDSGsiEHrAImaJ4cQOmoZes87_GDSzOby90Rc,7219
|
|
268
268
|
angr/analyses/decompiler/structuring/sailr.py,sha256=6lM9cK3iU1kQ_eki7v1Z2VxTiX5OwQzIRF_BbEsw67Q,5721
|
|
269
269
|
angr/analyses/decompiler/structuring/structurer_base.py,sha256=3TBpv5gE7CfUrRd1TihDDqMVUJnMstO6v6PXJYAOlpA,47399
|
|
270
270
|
angr/analyses/decompiler/structuring/structurer_nodes.py,sha256=x1lnHOSaOoQsXJQvHi0jnMe3SdaFUU9tY1mX0Sx6JUI,12318
|
|
271
271
|
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=
|
|
272
|
+
angr/analyses/deobfuscator/api_obf_finder.py,sha256=044ZCXK6D5BZjVyPfe0isAFDzDDDDzy_oJrfm5fDLew,13686
|
|
273
|
+
angr/analyses/deobfuscator/api_obf_peephole_optimizer.py,sha256=pyWZgSUyHQ2bnD9Kt3P8fDVwH1QsYrtf2UQJKHVyzVo,2210
|
|
274
274
|
angr/analyses/deobfuscator/api_obf_type2_finder.py,sha256=tPUfe_2jJV1uZB5cetgglf3T75E_UQZYVUFAfMACV9g,6389
|
|
275
275
|
angr/analyses/deobfuscator/irsb_reg_collector.py,sha256=q91IYpepptTQWcF0MJLHVCuvUsUuzPcL2XbbcIDV4eo,1290
|
|
276
276
|
angr/analyses/deobfuscator/string_obf_finder.py,sha256=bCd5Weos3Xn5nQUdoQfq2MioouTP-DdN0LUmxxmMK3s,36440
|
|
@@ -293,7 +293,7 @@ angr/analyses/forward_analysis/job_info.py,sha256=5iYthtygg22taqFTR9oFhmB2FX6z2r
|
|
|
293
293
|
angr/analyses/forward_analysis/visitors/__init__.py,sha256=GkGwTjU25YLDaKgrvWuOZwMq32DdOEbmQ9wTOCJQRaA,327
|
|
294
294
|
angr/analyses/forward_analysis/visitors/call_graph.py,sha256=6d5W2taXv_RA30rZeiBzn_W3mxgKl_e8lHb__aqay6s,748
|
|
295
295
|
angr/analyses/forward_analysis/visitors/function_graph.py,sha256=8MoSd3v4ztU4buvDzaLmlE8prcOFrS6k1ds4uREadYA,2737
|
|
296
|
-
angr/analyses/forward_analysis/visitors/graph.py,sha256=
|
|
296
|
+
angr/analyses/forward_analysis/visitors/graph.py,sha256=jsNSspZGRjtp9rsewA3qtBhVduJTR8WAK5rLNQOnlfQ,7788
|
|
297
297
|
angr/analyses/forward_analysis/visitors/loop.py,sha256=jB5gTmnVweu4Zs-TsSlYO0FIOykwx2XOPt9naFImzpo,746
|
|
298
298
|
angr/analyses/forward_analysis/visitors/single_node_graph.py,sha256=BKfsY6yhR3qxBmGLcC6Ct-eAOG_L6MVOUwCl91u_x8Y,785
|
|
299
299
|
angr/analyses/identifier/__init__.py,sha256=82MTyuTZqSyaGz8iIMkkoTm-nIpQfXcoYDiifDuMLfk,96
|
|
@@ -301,7 +301,7 @@ angr/analyses/identifier/custom_callable.py,sha256=3Lg29e-cLyRJmiX4vT65rU464xLh7
|
|
|
301
301
|
angr/analyses/identifier/errors.py,sha256=xVDh09xs7TQQBq7Y1ijdVqsclhgBNbIt61o4Lba-lVI,194
|
|
302
302
|
angr/analyses/identifier/func.py,sha256=0GfuxhiIYpm-x0-SRZ3CpsXBExQGk0Wp9o9r1SrcSKo,1780
|
|
303
303
|
angr/analyses/identifier/identify.py,sha256=w2nsv6YBXBFibsGk5yvsoVDO4Mp6Y-ga6jaG6ztp4q4,32657
|
|
304
|
-
angr/analyses/identifier/runner.py,sha256=
|
|
304
|
+
angr/analyses/identifier/runner.py,sha256=1X8lo2ZTBSJcK9fOkTE1ox-HtdgTwKDQPH-bABfvObo,13760
|
|
305
305
|
angr/analyses/identifier/functions/__init__.py,sha256=mMMRS5wAMgy9yazu7tiMWzp-vTQ5UToyba_X7PogA-Y,1080
|
|
306
306
|
angr/analyses/identifier/functions/atoi.py,sha256=4ccnAkkUydyG_c-kvjyT_PLZfSqv_XSJIBQZ8zataC0,2125
|
|
307
307
|
angr/analyses/identifier/functions/based_atoi.py,sha256=snS0mY0XdIZ_0cSo8mzCN1pxA6HKGrujL0QOlqTN3qk,3272
|
|
@@ -339,7 +339,7 @@ angr/analyses/reaching_definitions/dep_graph.py,sha256=yOuYhAYQQSi2aN6GIWYkgzquq
|
|
|
339
339
|
angr/analyses/reaching_definitions/engine_ail.py,sha256=BvLsafjUOf5N0aoDYFb0IAzBKIWF0DzYRZVYZd8Bjfc,45861
|
|
340
340
|
angr/analyses/reaching_definitions/engine_vex.py,sha256=K486MkRAvTcTFD52pJtmjWbuVw7KURtGCEC0EDhJmRk,45601
|
|
341
341
|
angr/analyses/reaching_definitions/external_codeloc.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
|
-
angr/analyses/reaching_definitions/function_handler.py,sha256=
|
|
342
|
+
angr/analyses/reaching_definitions/function_handler.py,sha256=ZwtBHoAAocYIIUYVjg51sG7ejdmTnXrQzbYlUgkDKXA,29105
|
|
343
343
|
angr/analyses/reaching_definitions/heap_allocator.py,sha256=NQ9wBolyyUlCnQl8K0Gt0XVHhQAkRhNGa1MM9gRV9s8,2626
|
|
344
344
|
angr/analyses/reaching_definitions/rd_initializer.py,sha256=z6LzV6UOWYg0G-Jnp4M16eFzOeX910YDt1rc-FEA4Kk,11156
|
|
345
345
|
angr/analyses/reaching_definitions/rd_state.py,sha256=nVtfjqGMNBCgM7yGczkBwPn7XEkfOeIO6qGyxONvcnY,22870
|
|
@@ -368,8 +368,8 @@ angr/analyses/unpacker/obfuscation_detector.py,sha256=VWMHOO2UbyiGzRYzAq9yrU3WwZ
|
|
|
368
368
|
angr/analyses/unpacker/packing_detector.py,sha256=SO6aXR1gZkQ7w17AAv3C1-U2KAc0yL9OIQqjNOtVnuo,5331
|
|
369
369
|
angr/analyses/variable_recovery/__init__.py,sha256=eA1SHzfSx8aPufUdkvgMmBnbI6VDYKKMJklcOoCO7Ao,208
|
|
370
370
|
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=
|
|
371
|
+
angr/analyses/variable_recovery/engine_ail.py,sha256=_va66D9qQbzKusNQdKlDlRkDEEYiv8x95RL3WNiB4Fw,31855
|
|
372
|
+
angr/analyses/variable_recovery/engine_base.py,sha256=xQ-2vXT9LWqnU9z8dRshhBOFUNjUOF5H3jgDmdD2QXg,51208
|
|
373
373
|
angr/analyses/variable_recovery/engine_vex.py,sha256=5Q2S1jAr7tALa0m0okqBHBe3cUePmJlnV1Grxos1xbo,21344
|
|
374
374
|
angr/analyses/variable_recovery/irsb_scanner.py,sha256=1dL2IC7fZGuRrhmcpa2Q-G666aMPmbM8zSzmIRpLNSY,5141
|
|
375
375
|
angr/analyses/variable_recovery/variable_recovery.py,sha256=s5hwY9oOibhLxsJIePhYRmrX0mrDIi_zKkfNblwYyhE,22169
|
|
@@ -493,7 +493,7 @@ angr/exploration_techniques/base.py,sha256=AoM5IInQExOxC5sHdm_ZNj2HxQE3QeBVzZWVQ
|
|
|
493
493
|
angr/exploration_techniques/bucketizer.py,sha256=BvkBr5SBbWHT6Z1G8AJaNA7BmN9NqRmyr1J98yQ6Ou0,2563
|
|
494
494
|
angr/exploration_techniques/common.py,sha256=_FmR6IxiCm_lal1rP6382r-1hCj-EirDsq_eQdD3x3s,2277
|
|
495
495
|
angr/exploration_techniques/dfs.py,sha256=_pPa8qdusyGN_98FSmqEDNKrDWsBYVJb7Swn55Ngbh8,1208
|
|
496
|
-
angr/exploration_techniques/director.py,sha256=
|
|
496
|
+
angr/exploration_techniques/director.py,sha256=sdqTSCNoieBWln7egJBh7gkJoZAo7zpWC2telwEsn1w,17865
|
|
497
497
|
angr/exploration_techniques/driller_core.py,sha256=VoTeui1DkqmQLRungOwGaZ_xrpnG2U27WEspvBJ_j8U,3468
|
|
498
498
|
angr/exploration_techniques/explorer.py,sha256=_SKBIFX-YDd71aIAJaV9MwCZt64wUvvZmZiBjrjuruk,6243
|
|
499
499
|
angr/exploration_techniques/lengthlimiter.py,sha256=To8SlXhtdDVSqAlCSIvhvqyY8BUs37ZU7ABymhJDz14,590
|
|
@@ -536,17 +536,17 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
536
536
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=W3KWpH7Sx-6Z7h_BwQjCK_XfP3ce_MaeAu_Aaq3D3qg,2072
|
|
537
537
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
538
538
|
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=
|
|
539
|
+
angr/knowledge_plugins/functions/function.py,sha256=jtbUKuZOzRY8rC-2Ef4JAACGNMEahTvQWCNFFu9Z-4U,67949
|
|
540
|
+
angr/knowledge_plugins/functions/function_manager.py,sha256=YWp9Hc-Rx9iYChJ3hFv9Tjat-6ZUidv1xsSZLQ2tL9Q,20469
|
|
541
|
+
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
542
|
+
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
543
543
|
angr/knowledge_plugins/key_definitions/__init__.py,sha256=-x1VGH3LHMze3T-RygodvUG3oXXa5jhKvjXoPKyiU_0,432
|
|
544
544
|
angr/knowledge_plugins/key_definitions/atoms.py,sha256=ydXrPGPCFSMk1JR24qZfPy1xAVOAsc2Isc-QoZPm8Kg,11133
|
|
545
545
|
angr/knowledge_plugins/key_definitions/constants.py,sha256=n1h_yQbwD9qUOmuBFRNZOljeryMv1iOeZAE2ctKdJ5w,661
|
|
546
546
|
angr/knowledge_plugins/key_definitions/definition.py,sha256=AAePJW3BYV0Ju3ZFdqVJdQebPAkB1ASdTiuU9sRqzn4,8574
|
|
547
547
|
angr/knowledge_plugins/key_definitions/environment.py,sha256=UbXUgv2vjz_dbG_gF2iNK6ZztKt2vgxov9SXdVEWFXk,3886
|
|
548
548
|
angr/knowledge_plugins/key_definitions/heap_address.py,sha256=YF5k7saQTQA7cz3Sz0PbW7N3qpNZoVrlpOvq1L6gvFI,919
|
|
549
|
-
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=
|
|
549
|
+
angr/knowledge_plugins/key_definitions/key_definition_manager.py,sha256=LYLFUutUqWB1jSOjWh7b_JQtIaT08duv8_TUZIt5R-k,3313
|
|
550
550
|
angr/knowledge_plugins/key_definitions/live_definitions.py,sha256=IAoU_k_vx4AOHdXqv88FQv30AyFhzUNZkn9zwiehJ38,38572
|
|
551
551
|
angr/knowledge_plugins/key_definitions/liveness.py,sha256=FtbfnQTtILx3a3j21MKVVuZX4lN3x7n6ccYuIVDo2CY,6933
|
|
552
552
|
angr/knowledge_plugins/key_definitions/rd_model.py,sha256=wJUpQ1-QkNNOTYqPrlCY840SrG3KUns8fJahIqvcdTM,7105
|
|
@@ -589,7 +589,7 @@ angr/procedures/cgc/fdwait.py,sha256=wknRSRoa1UeLb_59hPhYqYkU6x88p6rf29rhtKBVQiI
|
|
|
589
589
|
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
590
590
|
angr/procedures/cgc/receive.py,sha256=CYxXBnw9CpLfIVn086UuaEvpT4MGEg8otDHtsgf5etY,3668
|
|
591
591
|
angr/procedures/cgc/transmit.py,sha256=SwVCOo_H-_8sZ3qRQ5QT942eNwc2oPoZJr4VyA7Ny2A,2389
|
|
592
|
-
angr/procedures/definitions/__init__.py,sha256=
|
|
592
|
+
angr/procedures/definitions/__init__.py,sha256=IqSpclB1eZhr21rNC3IFMswGNFeEp6FB2uRmGwp4IuE,31949
|
|
593
593
|
angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVkH5jio,508
|
|
594
594
|
angr/procedures/definitions/glibc.py,sha256=L_NvGd20GQqGx2yGPmjfloFmOwQ0_dmA8rpLA6AlpN0,394188
|
|
595
595
|
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
@@ -1204,7 +1204,7 @@ angr/procedures/stubs/__init__.py,sha256=44m1-NIxNEwXtyCkYnHnH1jYw5Mp53ObHGzw1bT
|
|
|
1204
1204
|
angr/procedures/stubs/b64_decode.py,sha256=XrTE8etlYtPoB63ErSv7QqBzT9HwnVj9e0IRVReicpU,383
|
|
1205
1205
|
angr/procedures/stubs/caller.py,sha256=c-anKQywa_uohZ4yysUJ_G01S3RjM21nECNy4F_j6YQ,378
|
|
1206
1206
|
angr/procedures/stubs/crazy_scanf.py,sha256=OtbA8l8Gvj-yCFELsEm2R0H9gJIBerW12caD2QFdRnE,654
|
|
1207
|
-
angr/procedures/stubs/format_parser.py,sha256=
|
|
1207
|
+
angr/procedures/stubs/format_parser.py,sha256=6P027c6qhCmOffC7x861W-KRJn6ANxXj7kv8Wvjx9zM,27669
|
|
1208
1208
|
angr/procedures/stubs/syscall_stub.py,sha256=XaxmYrO4T0anV3c0r7DKrGHY8D5mBRBrc-J_m7I6BVA,826
|
|
1209
1209
|
angr/procedures/testing/__init__.py,sha256=mkl-uqerjl2KIlTiJDmE9WW9zE9sL2MQsYLHOfeoJh8,106
|
|
1210
1210
|
angr/procedures/testing/manyargs.py,sha256=6HuAjU0fKszwFUWcS_qaYuc4P_lILJiHdQX5xw8q8sk,135
|
|
@@ -1247,19 +1247,19 @@ angr/procedures/win_user32/chars.py,sha256=6EjHPI6DSlGtfYKOO-cK5-T4UzOAMozUl9Y9p
|
|
|
1247
1247
|
angr/procedures/win_user32/keyboard.py,sha256=P571-AOJMFqlDAN3XBcMUJAkojvqrAaHftWIPbwLbFU,412
|
|
1248
1248
|
angr/procedures/win_user32/messagebox.py,sha256=yhgsLpAxzUvO78aQY0ACT81BprJMriggTetUgi_ZDXw,1714
|
|
1249
1249
|
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
|
|
1250
|
+
angr/protos/cfg_pb2.py,sha256=MOZ74RcON7lGKjA2RJyjLCpRwHHZ0veEuQOkY_SobSc,2464
|
|
1251
|
+
angr/protos/function_pb2.py,sha256=qH8_xrk6B2nGVosY3oCyWbOT86yYGqLHkuZPOCO8UpM,2097
|
|
1252
|
+
angr/protos/primitives_pb2.py,sha256=Ou3JWw4z-Wa2TFRXrX2neA4gUzlk3oiC3U6rGm6ufj0,5987
|
|
1253
|
+
angr/protos/variables_pb2.py,sha256=fZ0sMXZFrSgs9G7Hzt7zSlDUN5gMKaAcdppsR7TQKF8,4576
|
|
1254
|
+
angr/protos/xrefs_pb2.py,sha256=wznhpgAE5rSVyP_E8wdFZF6OyIYEwtcZ8aq0zx8FXzs,1101
|
|
1255
1255
|
angr/simos/__init__.py,sha256=viflGa2m57GOjuWxFM80osoFZmGEGhA6Ot1ElVau6Xg,1002
|
|
1256
|
-
angr/simos/cgc.py,sha256=
|
|
1256
|
+
angr/simos/cgc.py,sha256=LoBl_csMIVqn7WDqmspqAN5ETnTUoUv4PkVqobxqspU,5592
|
|
1257
1257
|
angr/simos/javavm.py,sha256=xPhWuvSdDG-GskoPPrLRfoJGABQ8J3H6SjpH1VoZTUQ,20566
|
|
1258
|
-
angr/simos/linux.py,sha256=
|
|
1258
|
+
angr/simos/linux.py,sha256=ShLsqFIut1jGuo6NGQSlT7ymoaEEwgTNkloJNN0pDDI,23204
|
|
1259
1259
|
angr/simos/simos.py,sha256=L43oFMGRWiVEpfMWhb_Y_iawsaxm7qw_fG-sfKF344M,18464
|
|
1260
1260
|
angr/simos/snimmuc_nxp.py,sha256=kMBcgEJ1gyYRXtgYD8H4edQ2rKGIc2rGysnwTY9HaXw,5592
|
|
1261
1261
|
angr/simos/userland.py,sha256=jvHdMocEJAlwrTjupubdGfD6snt_DpQ_pyHrIZyV7NE,7354
|
|
1262
|
-
angr/simos/windows.py,sha256=
|
|
1262
|
+
angr/simos/windows.py,sha256=EneZrucxYgw5wII0FNYIEPjiLnhv0ju_nAEOpk8ssME,27878
|
|
1263
1263
|
angr/simos/xbox.py,sha256=f0IL9ZTgYX8feEck5nBu87bYcehbdmYKQVoze6wsmY0,971
|
|
1264
1264
|
angr/state_plugins/__init__.py,sha256=AOCYC5r6YWswhEhBEdtNDK9d9N_qhAl902UMHyGi8QY,2419
|
|
1265
1265
|
angr/state_plugins/callstack.py,sha256=BMBl0qX10Qxkwl__lVP_Ho8aaQcSJNqvMAiY6csL1y8,11825
|
|
@@ -1326,7 +1326,7 @@ angr/storage/memory_mixins/underconstrained_mixin.py,sha256=pF2p91j0g4MhWMDVcCuL
|
|
|
1326
1326
|
angr/storage/memory_mixins/unwrapper_mixin.py,sha256=KVWgw7bROwsnPs8JN7ugTzGz94NOWuw0ld9KKQhwrN8,1110
|
|
1327
1327
|
angr/storage/memory_mixins/paged_memory/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1328
1328
|
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=
|
|
1329
|
+
angr/storage/memory_mixins/paged_memory/paged_memory_mixin.py,sha256=E2LNktW8ln2e5ofMfhQlyUjB4XVChkkqVwit32NWamY,29386
|
|
1330
1330
|
angr/storage/memory_mixins/paged_memory/paged_memory_multivalue_mixin.py,sha256=9kaf0ULBMwdC7vQobp1yjAQZ6Me4UvmTR3alje_PQ5A,2265
|
|
1331
1331
|
angr/storage/memory_mixins/paged_memory/privileged_mixin.py,sha256=YYFxpXsf9-ALl1x86_Gm71H45jqtdkkgLWPf0twqefU,1578
|
|
1332
1332
|
angr/storage/memory_mixins/paged_memory/stack_allocation_mixin.py,sha256=AxzHQwf1f5J5W8jnMzgTzMdAYhw2UIKpp31OQDMESak,3320
|
|
@@ -1377,9 +1377,9 @@ angr/utils/types.py,sha256=5EDtrusFLf1fIcMz8fgJiPPsUhpEm0bf_oqZ_PSRje0,1836
|
|
|
1377
1377
|
angr/utils/ssa/__init__.py,sha256=ohP9IJh9ZvdVH8nH-ZrYA8hwIi8L98XQ6NMNL6q_pJ0,13649
|
|
1378
1378
|
angr/utils/ssa/tmp_uses_collector.py,sha256=rSpvMxBHzg-tmvhsfjn3iLyPEKzaZN-xpQrdslMq3J4,793
|
|
1379
1379
|
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.
|
|
1380
|
+
angr-9.2.148.dist-info/licenses/LICENSE,sha256=cgL_ho5B1NH8UxwtBuqThRWdjear8b7hktycaS1sz6g,1327
|
|
1381
|
+
angr-9.2.148.dist-info/METADATA,sha256=DdeUKR34seWr3zxK0wEQnyDNKabfQmB9E1JjxCEdLAU,4910
|
|
1382
|
+
angr-9.2.148.dist-info/WHEEL,sha256=aeelgo1NhMnzVjswGOrSnHHCtk0EhiDO2I3FNR9KDUM,108
|
|
1383
|
+
angr-9.2.148.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1384
|
+
angr-9.2.148.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1385
|
+
angr-9.2.148.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|