angr 9.2.174__cp310-abi3-macosx_11_0_arm64.whl → 9.2.175__cp310-abi3-macosx_11_0_arm64.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/__main__.py +32 -2
- angr/analyses/cfg/cfg_base.py +1 -1
- angr/analyses/cfg/cfg_fast.py +27 -8
- angr/analyses/decompiler/utils.py +1 -1
- angr/analyses/smc.py +1 -1
- angr/calling_conventions.py +2 -1
- angr/knowledge_plugins/functions/function.py +1 -1
- angr/misc/bug_report.py +11 -2
- angr/procedures/definitions/__init__.py +88 -20
- angr/procedures/definitions/common/glibc.json +3516 -0
- angr/procedures/definitions/parse_glibc.py +78 -0
- angr/procedures/libc/fgets.py +2 -1
- angr/rustylib.abi3.so +0 -0
- angr/sim_type.py +62 -5
- angr/unicornlib.dylib +0 -0
- angr/utils/library.py +1 -0
- {angr-9.2.174.dist-info → angr-9.2.175.dist-info}/METADATA +5 -5
- {angr-9.2.174.dist-info → angr-9.2.175.dist-info}/RECORD +23 -22
- angr/procedures/definitions/glibc.py +0 -8372
- {angr-9.2.174.dist-info → angr-9.2.175.dist-info}/WHEEL +0 -0
- {angr-9.2.174.dist-info → angr-9.2.175.dist-info}/entry_points.txt +0 -0
- {angr-9.2.174.dist-info → angr-9.2.175.dist-info}/licenses/LICENSE +0 -0
- {angr-9.2.174.dist-info → angr-9.2.175.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import logging
|
|
4
|
+
import sys
|
|
5
|
+
import os
|
|
6
|
+
import json
|
|
7
|
+
from collections import OrderedDict
|
|
8
|
+
|
|
9
|
+
from angr.sim_type import parse_file, ALL_TYPES
|
|
10
|
+
|
|
11
|
+
l = logging.getLogger(name="parse_glibc")
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def main():
|
|
15
|
+
|
|
16
|
+
with open(sys.argv[1], encoding="utf-8") as f:
|
|
17
|
+
glibc_decls = f.readlines()
|
|
18
|
+
|
|
19
|
+
protos = {}
|
|
20
|
+
for c_decl in glibc_decls:
|
|
21
|
+
c_decl = c_decl.strip("\n")
|
|
22
|
+
|
|
23
|
+
# preprocessing
|
|
24
|
+
c_decl = c_decl.replace("FILE *", "FILE_t *")
|
|
25
|
+
c_decl = c_decl.replace("const ", "")
|
|
26
|
+
c_decl = c_decl.replace("*restrict ", "* ")
|
|
27
|
+
|
|
28
|
+
try:
|
|
29
|
+
parsed = parse_file(c_decl, predefined_types=ALL_TYPES)
|
|
30
|
+
except Exception as ex: # pylint: disable=broad-exception-caught
|
|
31
|
+
l.warning("Cannot parse the function prototype for %s: %s.", c_decl, str(ex))
|
|
32
|
+
continue
|
|
33
|
+
parsed_decl = parsed[0]
|
|
34
|
+
if not parsed_decl:
|
|
35
|
+
l.warning("Cannot parse the function prototype for %s.", c_decl)
|
|
36
|
+
continue
|
|
37
|
+
|
|
38
|
+
func_name, func_proto = next(iter(parsed_decl.items()))
|
|
39
|
+
protos[func_name] = func_proto
|
|
40
|
+
|
|
41
|
+
# build the dictionary
|
|
42
|
+
d = {
|
|
43
|
+
"_t": "lib",
|
|
44
|
+
"library_names": [
|
|
45
|
+
"libc.so.0",
|
|
46
|
+
"libc.so.1",
|
|
47
|
+
"libc.so.2",
|
|
48
|
+
"libc.so.3",
|
|
49
|
+
"libc.so.4",
|
|
50
|
+
"libc.so.5",
|
|
51
|
+
"libc.so.6",
|
|
52
|
+
"libc.so.7",
|
|
53
|
+
"libc.so",
|
|
54
|
+
],
|
|
55
|
+
"non_returning": [
|
|
56
|
+
"exit_group",
|
|
57
|
+
"exit",
|
|
58
|
+
"abort",
|
|
59
|
+
"pthread_exit",
|
|
60
|
+
"__assert_fail",
|
|
61
|
+
"longjmp",
|
|
62
|
+
"siglongjmp",
|
|
63
|
+
"__longjmp_chk",
|
|
64
|
+
"__siglongjmp_chk",
|
|
65
|
+
],
|
|
66
|
+
"functions": OrderedDict(),
|
|
67
|
+
}
|
|
68
|
+
for func_name in sorted(protos):
|
|
69
|
+
proto = protos[func_name]
|
|
70
|
+
d["functions"][func_name] = {"proto": json.dumps(proto.to_json()).replace('"', "'")}
|
|
71
|
+
|
|
72
|
+
os.makedirs("common", exist_ok=True)
|
|
73
|
+
with open("common/glibc.json", "w", encoding="utf-8") as f:
|
|
74
|
+
f.write(json.dumps(d, indent="\t"))
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
if __name__ == "__main__":
|
|
78
|
+
main()
|
angr/procedures/libc/fgets.py
CHANGED
|
@@ -10,7 +10,8 @@ class fgets(angr.SimProcedure):
|
|
|
10
10
|
# pylint:disable=arguments-differ
|
|
11
11
|
|
|
12
12
|
def run(self, dst, size, file_ptr):
|
|
13
|
-
|
|
13
|
+
if size.size() < self.arch.bits:
|
|
14
|
+
size = size.zero_extend(self.arch.bits - self.arch.sizeof["int"])
|
|
14
15
|
|
|
15
16
|
# let's get the memory back for the file we're interested in and find the newline
|
|
16
17
|
fd_offset = io_file_data_for_arch(self.state.arch)["fd"]
|
angr/rustylib.abi3.so
CHANGED
|
Binary file
|
angr/sim_type.py
CHANGED
|
@@ -2289,7 +2289,10 @@ STDINT_TYPES = {
|
|
|
2289
2289
|
"ssize_t": SimTypeLength(True),
|
|
2290
2290
|
"ssize": SimTypeLength(False),
|
|
2291
2291
|
"uintptr_t": SimTypeLong(False),
|
|
2292
|
-
|
|
2292
|
+
# wide-char types
|
|
2293
|
+
"wchar_t": SimTypeShort(True, label="wchar_t"),
|
|
2294
|
+
"wint_t": SimTypeInt(True, label="wint_t"),
|
|
2295
|
+
"wctype_t": SimTypeInt(True, label="wctype_t"),
|
|
2293
2296
|
}
|
|
2294
2297
|
ALL_TYPES.update(STDINT_TYPES)
|
|
2295
2298
|
|
|
@@ -2313,6 +2316,8 @@ GLIBC_INTERNAL_BASIC_TYPES = {
|
|
|
2313
2316
|
# https://github.com/bminor/glibc/blob/a01a13601c95f5d111d25557656d09fe661cfc89/sysdeps/unix/sysv/linux/x86/bits/siginfo-arch.h#L12
|
|
2314
2317
|
"__clock_t": ALL_TYPES["uint32_t"],
|
|
2315
2318
|
"__suseconds_t": ALL_TYPES["int64_t"],
|
|
2319
|
+
"socklen_t": ALL_TYPES["uint32_t"],
|
|
2320
|
+
"mode_t": ALL_TYPES["unsigned int"],
|
|
2316
2321
|
}
|
|
2317
2322
|
ALL_TYPES.update(GLIBC_INTERNAL_BASIC_TYPES)
|
|
2318
2323
|
|
|
@@ -2340,6 +2345,22 @@ GLIBC_EXTERNAL_BASIC_TYPES = {
|
|
|
2340
2345
|
"rlim64_t": ALL_TYPES["uint64_t"],
|
|
2341
2346
|
# https://github.com/bminor/glibc/blob/a01a13601c95f5d111d25557656d09fe661cfc89/bits/types/error_t.h#L22
|
|
2342
2347
|
"error_t": ALL_TYPES["int"],
|
|
2348
|
+
"sigset_t": ALL_TYPES["int"],
|
|
2349
|
+
"sem_t": ALL_TYPES["int"],
|
|
2350
|
+
"sighandler_t": SimTypePointer(ALL_TYPES["void"], label="sighandler_t"),
|
|
2351
|
+
"comparison_fn_t": SimTypePointer(ALL_TYPES["void"], label="comparison_fn_t"),
|
|
2352
|
+
"DIR": SimStruct({}, name="DIR"),
|
|
2353
|
+
"glob_t": SimStruct({}, name="glob_t"),
|
|
2354
|
+
"glob64_t": SimStruct({}, name="glob64_t"),
|
|
2355
|
+
"__free_fn_t": SimTypePointer(ALL_TYPES["void"], label="__free_fn_t"),
|
|
2356
|
+
"__action_fn_t": SimTypePointer(ALL_TYPES["void"], label="__action_fn_t"),
|
|
2357
|
+
"__ftw_func_t": SimTypePointer(ALL_TYPES["void"], label="__ftw_func_t"),
|
|
2358
|
+
"mbstate_t": SimStruct({}, name="mbstate_t"),
|
|
2359
|
+
"fpos_t": SimStruct({}, name="fpos_t"),
|
|
2360
|
+
"fpos64_t": SimStruct({}, name="fpos64_t"),
|
|
2361
|
+
"regex_t": SimStruct({}, name="regex_t"),
|
|
2362
|
+
"fd_set": SimStruct({}, name="fd_set"),
|
|
2363
|
+
"dev_t": ALL_TYPES["int"],
|
|
2343
2364
|
}
|
|
2344
2365
|
ALL_TYPES.update(GLIBC_EXTERNAL_BASIC_TYPES)
|
|
2345
2366
|
|
|
@@ -3578,6 +3599,15 @@ def _decl_to_type(
|
|
|
3578
3599
|
if struct is not None:
|
|
3579
3600
|
from_global = True
|
|
3580
3601
|
struct = struct.with_arch(arch)
|
|
3602
|
+
if struct is None:
|
|
3603
|
+
# fallback to using decl.name as key directly
|
|
3604
|
+
struct = ALL_TYPES.get(decl.name)
|
|
3605
|
+
if struct is not None and isinstance(struct, SimStruct):
|
|
3606
|
+
from_global = True
|
|
3607
|
+
struct = struct.with_arch(arch)
|
|
3608
|
+
else:
|
|
3609
|
+
# give up
|
|
3610
|
+
struct = None
|
|
3581
3611
|
if struct is not None and not isinstance(struct, SimStruct):
|
|
3582
3612
|
raise AngrTypeError("Provided a non-SimStruct value for a type that must be a struct")
|
|
3583
3613
|
|
|
@@ -3833,15 +3863,42 @@ def _cpp_decl_to_type(
|
|
|
3833
3863
|
|
|
3834
3864
|
|
|
3835
3865
|
def normalize_cpp_function_name(name: str) -> str:
|
|
3836
|
-
|
|
3837
|
-
|
|
3838
|
-
|
|
3839
|
-
|
|
3866
|
+
stripped_any = True
|
|
3867
|
+
while stripped_any:
|
|
3868
|
+
stripped_any = False
|
|
3869
|
+
# strip virtual/static/inline/friend keywords
|
|
3870
|
+
prefixes = ["virtual", "static", "inline", "friend"]
|
|
3871
|
+
for pre in prefixes:
|
|
3872
|
+
new_name = name.removeprefix(pre + " ")
|
|
3873
|
+
if new_name != name:
|
|
3874
|
+
name = new_name
|
|
3875
|
+
stripped_any = True
|
|
3876
|
+
|
|
3877
|
+
# strip access specifiers
|
|
3878
|
+
prefixes = ["public:", "protected:", "private:", "[thunk]:"]
|
|
3879
|
+
for pre in prefixes:
|
|
3880
|
+
new_name = name.removeprefix(pre)
|
|
3881
|
+
if new_name != name:
|
|
3882
|
+
name = new_name
|
|
3883
|
+
stripped_any = True
|
|
3884
|
+
|
|
3885
|
+
new_name = name.strip()
|
|
3886
|
+
if new_name != name:
|
|
3887
|
+
name = new_name
|
|
3888
|
+
stripped_any = True
|
|
3889
|
+
|
|
3890
|
+
if "void (__cdecl *)" in name:
|
|
3891
|
+
name = name.replace("void (__cdecl *)", "void ")
|
|
3840
3892
|
|
|
3841
3893
|
if name.startswith("operator"):
|
|
3842
3894
|
# the return type is missing; give it a default type
|
|
3843
3895
|
name = "int " + name
|
|
3844
3896
|
|
|
3897
|
+
if " __int" in name:
|
|
3898
|
+
name = name.replace(" __int64 ", " long long ")
|
|
3899
|
+
name = name.replace(" __int32 ", " int ")
|
|
3900
|
+
name = name.replace(" __int16 ", " short ")
|
|
3901
|
+
|
|
3845
3902
|
return name.removesuffix(";")
|
|
3846
3903
|
|
|
3847
3904
|
|
angr/unicornlib.dylib
CHANGED
|
Binary file
|
angr/utils/library.py
CHANGED
|
@@ -206,6 +206,7 @@ def get_cpp_function_name(demangled_name: str) -> str:
|
|
|
206
206
|
:param demangled_name: The demangled C++ function name.
|
|
207
207
|
:return: The qualified function name, excluding return type and parameters.
|
|
208
208
|
"""
|
|
209
|
+
demangled_name = demangled_name.strip()
|
|
209
210
|
func_decls, _ = parse_cpp_file(demangled_name)
|
|
210
211
|
if func_decls and len(func_decls) == 1:
|
|
211
212
|
return next(iter(func_decls))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.175
|
|
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/
|
|
@@ -16,12 +16,12 @@ Description-Content-Type: text/markdown
|
|
|
16
16
|
License-File: LICENSE
|
|
17
17
|
Requires-Dist: cxxheaderparser
|
|
18
18
|
Requires-Dist: GitPython
|
|
19
|
-
Requires-Dist: archinfo==9.2.
|
|
19
|
+
Requires-Dist: archinfo==9.2.175
|
|
20
20
|
Requires-Dist: cachetools
|
|
21
21
|
Requires-Dist: capstone==5.0.3
|
|
22
22
|
Requires-Dist: cffi>=1.14.0
|
|
23
|
-
Requires-Dist: claripy==9.2.
|
|
24
|
-
Requires-Dist: cle==9.2.
|
|
23
|
+
Requires-Dist: claripy==9.2.175
|
|
24
|
+
Requires-Dist: cle==9.2.175
|
|
25
25
|
Requires-Dist: msgspec
|
|
26
26
|
Requires-Dist: mulpyplexer
|
|
27
27
|
Requires-Dist: networkx!=2.8.1,>=2.0
|
|
@@ -31,7 +31,7 @@ Requires-Dist: pycparser>=2.18
|
|
|
31
31
|
Requires-Dist: pydemumble
|
|
32
32
|
Requires-Dist: pyformlang
|
|
33
33
|
Requires-Dist: pypcode<4.0,>=3.2.1
|
|
34
|
-
Requires-Dist: pyvex==9.2.
|
|
34
|
+
Requires-Dist: pyvex==9.2.175
|
|
35
35
|
Requires-Dist: rich>=13.1.0
|
|
36
36
|
Requires-Dist: sortedcontainers
|
|
37
37
|
Requires-Dist: sympy
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
angr-9.2.
|
|
2
|
-
angr-9.2.
|
|
3
|
-
angr-9.2.
|
|
4
|
-
angr-9.2.
|
|
5
|
-
angr-9.2.
|
|
6
|
-
angr-9.2.
|
|
1
|
+
angr-9.2.175.dist-info/RECORD,,
|
|
2
|
+
angr-9.2.175.dist-info/WHEEL,sha256=kFn0Fg1gyV9Pk02-Hr4CbqbhAvYPyosBpF5pwZB07jU,135
|
|
3
|
+
angr-9.2.175.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
4
|
+
angr-9.2.175.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
5
|
+
angr-9.2.175.dist-info/METADATA,sha256=mebKSVkG14DWy-syxp7TYRdR7oNAWUPi3I-ytwHpHIM,4366
|
|
6
|
+
angr-9.2.175.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
7
7
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
8
|
-
angr/unicornlib.dylib,sha256=
|
|
8
|
+
angr/unicornlib.dylib,sha256=1mDztYjv0WMCv-JbH9IPmkSbYxiOh-OuFV0pSiMLynU,234064
|
|
9
9
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
10
10
|
angr/callable.py,sha256=j9Orwd4H4fPqOYylcEt5GuLGPV7ZOqyA_OYO2bp5PAA,6437
|
|
11
|
-
angr/sim_type.py,sha256=
|
|
11
|
+
angr/sim_type.py,sha256=Hb2USgXG8alwjKF2PORFEpUvo55rVOcWyLeTEXiiZ0k,144401
|
|
12
12
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
13
13
|
angr/emulator.py,sha256=572e9l-N4VUzUzLKylqpv3JmBvVC5VExi1tLy6MZSoU,4633
|
|
14
|
-
angr/rustylib.abi3.so,sha256=
|
|
14
|
+
angr/rustylib.abi3.so,sha256=NJJLtUZvVTzx9fFXhjBUDhrzBPJQ7tqK_8_Mpgv8WbU,4790512
|
|
15
15
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
16
16
|
angr/graph_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
18
18
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
19
19
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
20
|
-
angr/__init__.py,sha256=
|
|
20
|
+
angr/__init__.py,sha256=FXSXRAhoObjfB2A_U0cDvr9i4x_JLD-93PunqXYtijM,9246
|
|
21
21
|
angr/blade.py,sha256=OGGW-oggqI9_LvgZhiQuh9Ktkvf3vhRBmH0XviNyZ6o,15801
|
|
22
22
|
angr/factory.py,sha256=PPNWvTiWaIgzxzyoTr8ObSF-TXp1hCdbY2e-0xBePNc,17815
|
|
23
23
|
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
24
|
-
angr/calling_conventions.py,sha256=
|
|
24
|
+
angr/calling_conventions.py,sha256=PNCk0MQ8BJe2opJt0hUiR1KwUBeBlyFewDM8zgoil2g,101871
|
|
25
25
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
26
26
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
27
27
|
angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
|
|
@@ -30,7 +30,7 @@ angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
|
30
30
|
angr/errors.py,sha256=I0L-TbxmVYIkC-USuHwaQ9BGPi2YVObnhZXQQ3kJFuo,8385
|
|
31
31
|
angr/block.py,sha256=0-qh5KiE1F8FZXgDpRG5Hk-OhZrTBrCmMi9oGXE21rU,14834
|
|
32
32
|
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
33
|
-
angr/__main__.py,sha256=
|
|
33
|
+
angr/__main__.py,sha256=N6uAG4GA5S02pSDUKcWFmTuWiT-qiO7OP7kSfXsF4nQ,6142
|
|
34
34
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
35
35
|
angr/project.py,sha256=sXHWI8EVNK8Ax6--yNOMhyt77Mcxg6shzD1NbMf0GT0,38267
|
|
36
36
|
angr/sim_variable.py,sha256=3DssmMw5G7m_-MYToJ3LBP-ooy2UQEuI2YgxIuX3d4Y,13177
|
|
@@ -150,7 +150,7 @@ angr/procedures/libc/abort.py,sha256=kyleIqhN8yDckJzoshGOurupt4dTkfX942sk4sck1O4
|
|
|
150
150
|
angr/procedures/libc/strstr.py,sha256=Qv3ppkvD78wb4_nSw-dV0SrA_5WGIons2lSgrX-MwJo,3747
|
|
151
151
|
angr/procedures/libc/strnlen.py,sha256=IolI9OPHGJhVv4Qzc0Aui-11IqpU5pzGE9B2JPUbB14,395
|
|
152
152
|
angr/procedures/libc/strncat.py,sha256=59NtDDFFJHp7r9YkzD7-v-P9R1upPOIExyjcCO-6OOg,536
|
|
153
|
-
angr/procedures/libc/fgets.py,sha256=
|
|
153
|
+
angr/procedures/libc/fgets.py,sha256=ekWbgmrxg3WiW8PvustYU_gGdq9zomPs3vs-u0gUeXE,2791
|
|
154
154
|
angr/procedures/libc/access.py,sha256=GG3asj6wrd62lplJ3CtY6S0bNMJ8CnF57BgBnGZDURA,316
|
|
155
155
|
angr/procedures/libc/printf.py,sha256=QKFTiASEk1E3HfZaxB3seeyed4wNMuJWN56SeBG3SDs,881
|
|
156
156
|
angr/procedures/libc/__init__.py,sha256=adwOD6zMckO8qKPIUAeJH8hyj3eufWtJrGTG4_PLl0o,95
|
|
@@ -309,14 +309,15 @@ angr/procedures/linux_loader/_dl_rtld_lock.py,sha256=DZASn_X95fmPnGVLzBPIu4GijiW
|
|
|
309
309
|
angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVkH5jio,508
|
|
310
310
|
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
311
311
|
angr/procedures/definitions/linux_kernel.py,sha256=xPpfHkfaA_5jS6mPX1YDCPLHEAirAmeGW6mLDBKIlC8,239128
|
|
312
|
+
angr/procedures/definitions/parse_glibc.py,sha256=-vmm4hKO2GnBVXmk6Nq4fxGHuLxesRbF52UIrPk4a6Q,2092
|
|
312
313
|
angr/procedures/definitions/parse_win32json.py,sha256=z4Rjr3L9HTSWsKtKImUynpcvMUJCinG4fIii-o7dPXw,109101
|
|
313
|
-
angr/procedures/definitions/__init__.py,sha256=
|
|
314
|
+
angr/procedures/definitions/__init__.py,sha256=_0icfYOL57Jz4yUNZ0hVemX-CaUfKe93f_rWG-_8oso,43342
|
|
314
315
|
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
315
316
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=ssyMjeyuPVYHnbmArwDPO0XXMW1n5Odv__n17cdLVcY,1823
|
|
316
317
|
angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YMssR_SSjBRSqA9c,267
|
|
317
318
|
angr/procedures/definitions/types_stl.py,sha256=4fsMlaDLQ7IZfL0jQX4ZvTkqBg5tsoeZAfSwupZm1gI,816
|
|
318
319
|
angr/procedures/definitions/libstdcpp.py,sha256=IoPJJEFQZR6ysOYvU1EmVK_IyQPuoq73ehImJuGS3JM,750
|
|
319
|
-
angr/procedures/definitions/glibc.
|
|
320
|
+
angr/procedures/definitions/common/glibc.json,sha256=XvQ4JWwJIDepZSvK2AfSX5H4uaB_MJWsULf9Ml1LKwk,955895
|
|
320
321
|
angr/procedures/definitions/wdk/pshed.json,sha256=ZcmmUV1H-2c-mI6W6dY6nMLnmDCC5EbIs0QinyvRsAs,1722
|
|
321
322
|
angr/procedures/definitions/wdk/offreg.json,sha256=FZ6U7XD1KZPzxgtgJylRbO0sw5bcHJntWKpkchPapiU,9593
|
|
322
323
|
angr/procedures/definitions/wdk/ndis.json,sha256=CBLTeOby2j_SOP_uPLTPkAcN9ryAiJPg8_bZJw63udw,37456
|
|
@@ -710,7 +711,7 @@ angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
|
710
711
|
angr/misc/picklable_lock.py,sha256=tnwbWxe6V_26T4K2J0AgBEptqAiMZzjdywEZ3KEmXkE,1311
|
|
711
712
|
angr/misc/testing.py,sha256=b3CWR7bv38RP-IjGKKjZmvCLyYvvSNPSdZu5MgniJ50,626
|
|
712
713
|
angr/misc/ux.py,sha256=3iU1tDj4_pZZ_FEouoD8S1frjOGjY9w5gF1sqjOqnXY,742
|
|
713
|
-
angr/misc/bug_report.py,sha256=
|
|
714
|
+
angr/misc/bug_report.py,sha256=Oq_4O9wqkfjTAP7grJJghOF__cv-C74yzPNbIn4hV3g,3989
|
|
714
715
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
715
716
|
angr/angrdb/db.py,sha256=ecwcJ9b_LcM9a74GXJUm7JVWTghk3JhXScLhaQ4ZP7o,6260
|
|
716
717
|
angr/angrdb/models.py,sha256=5Akv-fIjk3E2YHymEWu_nrbE8aQ9l75zOAaSIDEzeTQ,4794
|
|
@@ -754,7 +755,7 @@ angr/distributed/__init__.py,sha256=KbEuL2qYp5UN8c0mv_38rfZefTvvvtMkp6_ejWVFpOQ,
|
|
|
754
755
|
angr/utils/dynamic_dictlist.py,sha256=bHQrxhUCkk6NDDzEBouAWESjMyKfQUJIk8g38R27iXw,3048
|
|
755
756
|
angr/utils/bits.py,sha256=_eWPyymSbj01jsLexicRtD_X7sUKKj_fTUI0DEIZ-rc,1054
|
|
756
757
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
757
|
-
angr/utils/library.py,sha256=
|
|
758
|
+
angr/utils/library.py,sha256=N8-7DTJhbBFe9f-Yvx0--dHs43nAEDcTXhqm4aUBOj0,7386
|
|
758
759
|
angr/utils/ail.py,sha256=-N59ISc-k-0jHFu0Bg5FIhvhBY8HT6zK3OYSVhXawWo,2838
|
|
759
760
|
angr/utils/graph.py,sha256=-8cipOvaBeD4owh2cksAwBgcIx2jOeKZa-zcFk73WeM,34787
|
|
760
761
|
angr/utils/constants.py,sha256=8tQ1QnFw9U1kM9Q8YQ7StWxXHiqQHbWvrZanQK0eY2A,269
|
|
@@ -912,7 +913,7 @@ angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey
|
|
|
912
913
|
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
913
914
|
angr/knowledge_plugins/functions/function_manager.py,sha256=StsK3biTFRRA2ugrmeQLuHiN894p789Tlw1CIKlE0PY,23462
|
|
914
915
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
915
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
916
|
+
angr/knowledge_plugins/functions/function.py,sha256=6pFpPcFTiz8kSHZW87TIAajLlMVCx9fyMvi6rBBmei8,71669
|
|
916
917
|
angr/knowledge_plugins/xrefs/xref.py,sha256=U2H1rfffp5EXoh0awlGxMBxA4K5MIwl3CXjV3Uih3tA,4856
|
|
917
918
|
angr/knowledge_plugins/xrefs/xref_manager.py,sha256=1n373rtV91xicAfSUresRigsZ6qCBhPOaJKrN_SW3QY,4157
|
|
918
919
|
angr/knowledge_plugins/xrefs/__init__.py,sha256=5PhqVOtTZ27lCjJ9wp7akUeJydqILbyCBZK0gP7BGQs,193
|
|
@@ -1058,7 +1059,7 @@ angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5s
|
|
|
1058
1059
|
angr/analyses/__init__.py,sha256=KFu0Otm7bqAcjX8dsnQzphJmkUVxMLssjFIJJOci32U,3479
|
|
1059
1060
|
angr/analyses/ddg.py,sha256=AWPPsL2bfTAua5meuQfPFL6b29PLpCLZzw-LGCv5iVo,63214
|
|
1060
1061
|
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
1061
|
-
angr/analyses/smc.py,sha256=
|
|
1062
|
+
angr/analyses/smc.py,sha256=DC4l7fTmoOybD_lSQaLjcUdeLUifQhhsSu1nx8Ax6pM,5176
|
|
1062
1063
|
angr/analyses/complete_calling_conventions.py,sha256=nVrDHhCV3cawD_KxkAYj2fsszAskkFUHC1677rI6xEM,20490
|
|
1063
1064
|
angr/analyses/callee_cleanup_finder.py,sha256=lQRn5rHS6mGNOqDh-UsxX-gs4cDpwQ6KNjvzQFVCdio,2800
|
|
1064
1065
|
angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
|
|
@@ -1144,12 +1145,12 @@ angr/analyses/reaching_definitions/function_handler_library/stdlib.py,sha256=YRN
|
|
|
1144
1145
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
1145
1146
|
angr/analyses/cfg/cfb.py,sha256=HI25OJKs2OUlWkOSG4kLsZQFnBJcfDwSQKp6_ZRsoQY,15353
|
|
1146
1147
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
1147
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
1148
|
+
angr/analyses/cfg/cfg_fast.py,sha256=sW6mvJr6dXp2mWte1otf2QZLuXmKV7vYRq95bLRi6L4,235307
|
|
1148
1149
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
1149
1150
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
1150
1151
|
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
1151
1152
|
angr/analyses/cfg/cfg_emulated.py,sha256=4lKrmGVfCGt8l3Nz9zH6EcUcAVLwyOM7p81DlxUVNGA,148351
|
|
1152
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
1153
|
+
angr/analyses/cfg/cfg_base.py,sha256=AdFw6ujMKc0nqLGymiYACOUSNYXTf-5cOjnPeGTaF0U,125012
|
|
1153
1154
|
angr/analyses/cfg/indirect_jump_resolvers/jumptable.py,sha256=XJKPcZiKAYJQ4YusVx0xPXQfuoi_qdrHM1Wjf_zh2C4,109111
|
|
1154
1155
|
angr/analyses/cfg/indirect_jump_resolvers/mips_elf_fast.py,sha256=SSwWVKCqMNxdqTeMkLqXk5UFmzgxJDm8H-xLNBr1Hnc,10173
|
|
1155
1156
|
angr/analyses/cfg/indirect_jump_resolvers/memload_resolver.py,sha256=jmCiDkloyyqb6iRfjXBlu2N9uwYhiqeiXWhnUXW27dU,2950
|
|
@@ -1220,7 +1221,7 @@ angr/analyses/decompiler/node_replacer.py,sha256=jJd3XkIwFE07bIbLriJ6_mQEvfhm90C
|
|
|
1220
1221
|
angr/analyses/decompiler/decompilation_options.py,sha256=bs6CNpU3UxepgBB_9eUH4jriNpGoryyPP0sR1hDWpTk,8477
|
|
1221
1222
|
angr/analyses/decompiler/region_walker.py,sha256=u0hR0bEX1hSwkv-vejIM1gS-hcX2F2DLsDqpKhQ5_pQ,752
|
|
1222
1223
|
angr/analyses/decompiler/graph_region.py,sha256=uSDdCLXfLZJVcb0wMdgBh-KtBJUUhLGHQ-Ap4dNs8wo,18186
|
|
1223
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
1224
|
+
angr/analyses/decompiler/utils.py,sha256=slKEGEpWBN7X1ACbMDbd3e4Zs9txgDYeGBFqnFGCpD4,42705
|
|
1224
1225
|
angr/analyses/decompiler/decompiler.py,sha256=adX2UJv6s4JAF7Qf6HTgwPo28QQ6yCzrrQrtlqDZyfE,31864
|
|
1225
1226
|
angr/analyses/decompiler/goto_manager.py,sha256=wVoeXJcadIda84LloGgqW-rL0QHLv3fx4vZHLhmz-_o,4027
|
|
1226
1227
|
angr/analyses/decompiler/block_similarity.py,sha256=S1lTlXFyOmJlQa7I3y7xgLsENLS4XGET7tdD55k_6Vg,6859
|