angr 9.2.174__cp310-abi3-win_amd64.whl → 9.2.175__cp310-abi3-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/__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.pyd +0 -0
- angr/sim_type.py +62 -5
- angr/unicornlib.dll +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.pyd
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.dll
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,10 +1,10 @@
|
|
|
1
|
-
angr/__init__.py,sha256=
|
|
2
|
-
angr/__main__.py,sha256=
|
|
1
|
+
angr/__init__.py,sha256=FXSXRAhoObjfB2A_U0cDvr9i4x_JLD-93PunqXYtijM,9246
|
|
2
|
+
angr/__main__.py,sha256=N6uAG4GA5S02pSDUKcWFmTuWiT-qiO7OP7kSfXsF4nQ,6142
|
|
3
3
|
angr/annocfg.py,sha256=0NIvcuCskwz45hbBzigUTAuCrYutjDMwEXtMJf0y0S0,10742
|
|
4
4
|
angr/blade.py,sha256=OGGW-oggqI9_LvgZhiQuh9Ktkvf3vhRBmH0XviNyZ6o,15801
|
|
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=PNCk0MQ8BJe2opJt0hUiR1KwUBeBlyFewDM8zgoil2g,101871
|
|
8
8
|
angr/code_location.py,sha256=kXNJDEMge9VRHadrK4E6HQ8wDdCaHSXNqyAZuHDEGuM,5397
|
|
9
9
|
angr/codenode.py,sha256=hCrQRp4Ebb2X6JicNmY1PXo3_Pm8GDxVivVW0Pwe84k,3918
|
|
10
10
|
angr/emulator.py,sha256=572e9l-N4VUzUzLKylqpv3JmBvVC5VExi1tLy6MZSoU,4633
|
|
@@ -15,19 +15,19 @@ angr/keyed_region.py,sha256=Cx6dadqFgEvRmEHTbCJpg9mXkBtKGc_BKckHc6bk1IU,17992
|
|
|
15
15
|
angr/knowledge_base.py,sha256=hRoSLuLaOXmddTSF9FN5TVs7liftpBGq_IICz5AaYBk,4533
|
|
16
16
|
angr/project.py,sha256=sXHWI8EVNK8Ax6--yNOMhyt77Mcxg6shzD1NbMf0GT0,38267
|
|
17
17
|
angr/py.typed,sha256=la67KBlbjXN-_-DfGNcdOcjYumVpKG_Tkw-8n5dnGB4,8
|
|
18
|
-
angr/rustylib.pyd,sha256=
|
|
18
|
+
angr/rustylib.pyd,sha256=13dBK2r3LE7ncCE2K4XekpZ6iW0CL-Rea_iK9Qf_pPk,4466688
|
|
19
19
|
angr/serializable.py,sha256=l908phj_KcqopEEL_oCufbP_H6cm3Wc9v-5xdux1-6g,1533
|
|
20
20
|
angr/sim_manager.py,sha256=w7yTfWR-P9yoN5x85eeiNpj9dTrnjpJ3o5aoFpDAPnc,39396
|
|
21
21
|
angr/sim_options.py,sha256=WNLSnmn7gqKBYgQs3Me2H3zKusgt0WVqFzsBuzEZpoU,17436
|
|
22
22
|
angr/sim_procedure.py,sha256=EfXQEX-Na7iNtoqc2-KQhs7AR3tsiMYnxEF1v_lL_ok,26235
|
|
23
23
|
angr/sim_state.py,sha256=qK6XPl2Q23xEXBud_SBy1fzVPPcrlx0PEQwMtRKBaBI,33893
|
|
24
24
|
angr/sim_state_options.py,sha256=dsMY3UefvL7yZKXloubMhzUET3N2Crw-Fpw2Vd1ouZQ,12468
|
|
25
|
-
angr/sim_type.py,sha256=
|
|
25
|
+
angr/sim_type.py,sha256=Hb2USgXG8alwjKF2PORFEpUvo55rVOcWyLeTEXiiZ0k,144401
|
|
26
26
|
angr/sim_variable.py,sha256=3DssmMw5G7m_-MYToJ3LBP-ooy2UQEuI2YgxIuX3d4Y,13177
|
|
27
27
|
angr/slicer.py,sha256=DND0BERanYKafasRH9MDFAng0rSjdjmzXj2-phCD6CQ,10634
|
|
28
28
|
angr/state_hierarchy.py,sha256=qDQCUGXmQm3vOxE3CSoiqTH4OAFFOWZZt9BLhNpeOhA,8484
|
|
29
29
|
angr/tablespecs.py,sha256=Kx1e87FxTx3_ZN7cAHWZSRpdInT4Vfj5gExAWtLkLTw,3259
|
|
30
|
-
angr/unicornlib.dll,sha256=
|
|
30
|
+
angr/unicornlib.dll,sha256=S1h1NaRsMmDFueed7b0HIkhDiRlikCJlTBmH_eaxCOA,813568
|
|
31
31
|
angr/vaults.py,sha256=D_gkDegCyPlZMKGC5E8zINYAaZfSXNWbmhX0rXCYpvM,9718
|
|
32
32
|
angr/ailment/__init__.py,sha256=X1LTS6MuTovGtbXBjZendUVOzRk-ib-bP0imuqJDOYI,2039
|
|
33
33
|
angr/ailment/block.py,sha256=rkmimsNPhrUabVVbRd2IgCaW0hA2_isvAsKlYtHZhgY,2428
|
|
@@ -69,7 +69,7 @@ angr/analyses/proximity_graph.py,sha256=KoRvdQswRrDygotrY_6hPnrzUf1U5c5mht-b7low
|
|
|
69
69
|
angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
|
|
70
70
|
angr/analyses/s_liveness.py,sha256=mSWwwAPpXl-dIZNx5pAHA5vWXqCO_OivOXWoiaI7tss,7984
|
|
71
71
|
angr/analyses/s_propagator.py,sha256=pEq11sNPZoR0PrWLdIIjE0s5IEmOpCpNxYYnf2qMURY,24872
|
|
72
|
-
angr/analyses/smc.py,sha256=
|
|
72
|
+
angr/analyses/smc.py,sha256=DC4l7fTmoOybD_lSQaLjcUdeLUifQhhsSu1nx8Ax6pM,5176
|
|
73
73
|
angr/analyses/soot_class_hierarchy.py,sha256=R4xeacn-a_Q7PxSyj_stu5mnglZkPB5US5srKChX3mk,8740
|
|
74
74
|
angr/analyses/stack_pointer_tracker.py,sha256=MX4wcvmTpV9HsCybYofYdkSt3aaCwXL94RSJJ1tPD5o,38082
|
|
75
75
|
angr/analyses/static_hooker.py,sha256=AYJXoHtdq2m-MgpJbx4eur7wy7llrKXvsVM5NdPcKHU,1852
|
|
@@ -86,9 +86,9 @@ angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04
|
|
|
86
86
|
angr/analyses/cfg/cfb.py,sha256=HI25OJKs2OUlWkOSG4kLsZQFnBJcfDwSQKp6_ZRsoQY,15353
|
|
87
87
|
angr/analyses/cfg/cfg.py,sha256=dc9M91CaLeEKduYfMwpsT_01x6XyYuoNvgvcDKtbN-I,3177
|
|
88
88
|
angr/analyses/cfg/cfg_arch_options.py,sha256=_XRewFZ51SeNaxChadb6_ER7-8LW8KXeTIpoP8_iRj0,3506
|
|
89
|
-
angr/analyses/cfg/cfg_base.py,sha256=
|
|
89
|
+
angr/analyses/cfg/cfg_base.py,sha256=AdFw6ujMKc0nqLGymiYACOUSNYXTf-5cOjnPeGTaF0U,125012
|
|
90
90
|
angr/analyses/cfg/cfg_emulated.py,sha256=4lKrmGVfCGt8l3Nz9zH6EcUcAVLwyOM7p81DlxUVNGA,148351
|
|
91
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
91
|
+
angr/analyses/cfg/cfg_fast.py,sha256=sW6mvJr6dXp2mWte1otf2QZLuXmKV7vYRq95bLRi6L4,235307
|
|
92
92
|
angr/analyses/cfg/cfg_fast_soot.py,sha256=8YgMtY_8w4nAMcHR6n-q_eFvKwsvNz0anUH7EzIL1B4,25924
|
|
93
93
|
angr/analyses/cfg/cfg_job_base.py,sha256=Zshze972MakTsd-licQz77lac17igQaaTsAteHeHhYQ,5974
|
|
94
94
|
angr/analyses/cfg/indirect_jump_resolvers/__init__.py,sha256=qWiTSIAQgXWmaYa9YYaiKsSTwUVClymaXv9sCX-bY-k,835
|
|
@@ -142,7 +142,7 @@ angr/analyses/decompiler/return_maker.py,sha256=sUxRx4LRt1lf-N7x93t7W04lDgJomt_l
|
|
|
142
142
|
angr/analyses/decompiler/seq_to_blocks.py,sha256=4-tqstendHHO2J0WD3JHQkm8c4c2KG3AO3mYWrn4xvg,569
|
|
143
143
|
angr/analyses/decompiler/sequence_walker.py,sha256=_-kUn01iU7iGdrzOPpwzquwk9CVDUL7QfQkv2OT9r8Y,10083
|
|
144
144
|
angr/analyses/decompiler/stack_item.py,sha256=4HpYE54sOnODzMLrNX1m-Mb9RlQYjojJqNKjjDz9jxU,814
|
|
145
|
-
angr/analyses/decompiler/utils.py,sha256=
|
|
145
|
+
angr/analyses/decompiler/utils.py,sha256=slKEGEpWBN7X1ACbMDbd3e4Zs9txgDYeGBFqnFGCpD4,42705
|
|
146
146
|
angr/analyses/decompiler/ccall_rewriters/__init__.py,sha256=TrnykR5cGCXy85f8OApJBjWSQ8WQSzjrnpND2fODWG8,207
|
|
147
147
|
angr/analyses/decompiler/ccall_rewriters/amd64_ccalls.py,sha256=8LA05CKwFzoNAloOJ3KF4AkFM3bDTQdstr1_46WauxM,24958
|
|
148
148
|
angr/analyses/decompiler/ccall_rewriters/rewriter_base.py,sha256=9BiexqY0fgB_UTmjcql71tg9HALx2mFhQMP1IVYAJpw,512
|
|
@@ -566,7 +566,7 @@ angr/knowledge_plugins/cfg/cfg_node.py,sha256=mAvQ8XAEURM7y0suc_S9lfxCmfXSTJHmWB
|
|
|
566
566
|
angr/knowledge_plugins/cfg/indirect_jump.py,sha256=XQjyH8ZhSlRFWLc--QY9Voq0RB7nI2wzeP5COANwoOc,3741
|
|
567
567
|
angr/knowledge_plugins/cfg/memory_data.py,sha256=QLxFZfrtwz8u6UJn1L-Sxa-C8S0Gy9IOlfNfHCLPIow,5056
|
|
568
568
|
angr/knowledge_plugins/functions/__init__.py,sha256=asiLNiT6sHbjP6eU-kDpawIoVxv4J35cwz5yQHtQ2E0,167
|
|
569
|
-
angr/knowledge_plugins/functions/function.py,sha256=
|
|
569
|
+
angr/knowledge_plugins/functions/function.py,sha256=6pFpPcFTiz8kSHZW87TIAajLlMVCx9fyMvi6rBBmei8,71669
|
|
570
570
|
angr/knowledge_plugins/functions/function_manager.py,sha256=StsK3biTFRRA2ugrmeQLuHiN894p789Tlw1CIKlE0PY,23462
|
|
571
571
|
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
572
572
|
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
@@ -599,7 +599,7 @@ angr/knowledge_plugins/xrefs/xref_types.py,sha256=LcQ9pD4E4XlC51Us49xiqAoGAFGpnC
|
|
|
599
599
|
angr/misc/__init__.py,sha256=FoUwjk1DhqlIsr2sBN0MlR8MnSOGQv9QJhxmq32RYuA,355
|
|
600
600
|
angr/misc/ansi.py,sha256=nPJHC0SKfqasMQZ0LxdmmIYojjmk4nr5jI6FrzoTwS0,811
|
|
601
601
|
angr/misc/autoimport.py,sha256=iZagpuPwZWczUTYIqs-JkDMQjftMqc_cchcm7OBFiEg,3450
|
|
602
|
-
angr/misc/bug_report.py,sha256=
|
|
602
|
+
angr/misc/bug_report.py,sha256=Oq_4O9wqkfjTAP7grJJghOF__cv-C74yzPNbIn4hV3g,3989
|
|
603
603
|
angr/misc/hookset.py,sha256=mP4qYEwBGYHWqJ3jhCL3x-Bvppmc3nqhTdYv4kSAdtM,4549
|
|
604
604
|
angr/misc/loggers.py,sha256=Vfr2GQFpDjxSG5RRrUd3q9JJctIY3Q027Hu2OSLYWKU,4247
|
|
605
605
|
angr/misc/picklable_lock.py,sha256=tnwbWxe6V_26T4K2J0AgBEptqAiMZzjdywEZ3KEmXkE,1311
|
|
@@ -618,17 +618,18 @@ angr/procedures/cgc/fdwait.py,sha256=wknRSRoa1UeLb_59hPhYqYkU6x88p6rf29rhtKBVQiI
|
|
|
618
618
|
angr/procedures/cgc/random.py,sha256=YSE5qX80KYg0c5bC7XSCg5R4Tm33hU-vprxSXrPHcYk,2490
|
|
619
619
|
angr/procedures/cgc/receive.py,sha256=CYxXBnw9CpLfIVn086UuaEvpT4MGEg8otDHtsgf5etY,3668
|
|
620
620
|
angr/procedures/cgc/transmit.py,sha256=SwVCOo_H-_8sZ3qRQ5QT942eNwc2oPoZJr4VyA7Ny2A,2389
|
|
621
|
-
angr/procedures/definitions/__init__.py,sha256=
|
|
621
|
+
angr/procedures/definitions/__init__.py,sha256=_0icfYOL57Jz4yUNZ0hVemX-CaUfKe93f_rWG-_8oso,43342
|
|
622
622
|
angr/procedures/definitions/cgc.py,sha256=Jrb74dNzy05h_nmsC3GjN5Yr5_jWIjpZ24ZsVkH5jio,508
|
|
623
|
-
angr/procedures/definitions/glibc.py,sha256=L_NvGd20GQqGx2yGPmjfloFmOwQ0_dmA8rpLA6AlpN0,394188
|
|
624
623
|
angr/procedures/definitions/gnulib.py,sha256=GK4eVXFxwgwhJ9cr47PiTUS4fKYrqPfMtIvwM464Oyo,1107
|
|
625
624
|
angr/procedures/definitions/libstdcpp.py,sha256=IoPJJEFQZR6ysOYvU1EmVK_IyQPuoq73ehImJuGS3JM,750
|
|
626
625
|
angr/procedures/definitions/linux_kernel.py,sha256=xPpfHkfaA_5jS6mPX1YDCPLHEAirAmeGW6mLDBKIlC8,239128
|
|
627
626
|
angr/procedures/definitions/linux_loader.py,sha256=uEeMktLesh0NzHmRfgP76IuSzL4YMssR_SSjBRSqA9c,267
|
|
628
627
|
angr/procedures/definitions/msvcr.py,sha256=CQgWXrKcEjx9xfPf2BZOOPaQJ5AUqwdNtN_5FdYtRzg,651
|
|
628
|
+
angr/procedures/definitions/parse_glibc.py,sha256=-vmm4hKO2GnBVXmk6Nq4fxGHuLxesRbF52UIrPk4a6Q,2092
|
|
629
629
|
angr/procedures/definitions/parse_syscalls_from_local_system.py,sha256=ssyMjeyuPVYHnbmArwDPO0XXMW1n5Odv__n17cdLVcY,1823
|
|
630
630
|
angr/procedures/definitions/parse_win32json.py,sha256=z4Rjr3L9HTSWsKtKImUynpcvMUJCinG4fIii-o7dPXw,109101
|
|
631
631
|
angr/procedures/definitions/types_stl.py,sha256=4fsMlaDLQ7IZfL0jQX4ZvTkqBg5tsoeZAfSwupZm1gI,816
|
|
632
|
+
angr/procedures/definitions/common/glibc.json,sha256=XvQ4JWwJIDepZSvK2AfSX5H4uaB_MJWsULf9Ml1LKwk,955895
|
|
632
633
|
angr/procedures/definitions/wdk/api-ms-win-dx-d3dkmt-l1-1-4.json,sha256=nkET0iaXAHF_qSgyF4N6G1M0i7QtPEPCo2u28so9taM,1016
|
|
633
634
|
angr/procedures/definitions/wdk/api-ms-win-dx-d3dkmt-l1-1-6.json,sha256=W4md-By6xMbKPnSvDQG4Sqh5C6HSrl_61NHY9GWGbQM,460
|
|
634
635
|
angr/procedures/definitions/wdk/clfs.json,sha256=bDXQbYnvXIWvQeL7agM3WNxNS6fRyW_Yi9KDYBlnYyI,26417
|
|
@@ -1050,7 +1051,7 @@ angr/procedures/libc/fclose.py,sha256=lc7oU_6PR-YTUlJDUP71qXOoWlWgqlld20DgEPN4tD
|
|
|
1050
1051
|
angr/procedures/libc/feof.py,sha256=4Kx69CdFcOxkcrS28F5hfhipAVLv1LLeK-dVAkk16yk,602
|
|
1051
1052
|
angr/procedures/libc/fflush.py,sha256=LODdM1zQmdwVwzUyorgz-Taru6jFCQFpi0YZvr8HB7M,258
|
|
1052
1053
|
angr/procedures/libc/fgetc.py,sha256=USMoMi2uo7taXhuWtbnKrZ6bKFYAIP28zcmADyJqamE,656
|
|
1053
|
-
angr/procedures/libc/fgets.py,sha256=
|
|
1054
|
+
angr/procedures/libc/fgets.py,sha256=ekWbgmrxg3WiW8PvustYU_gGdq9zomPs3vs-u0gUeXE,2791
|
|
1054
1055
|
angr/procedures/libc/fopen.py,sha256=mQ1v1Ao0YQy8-g6tplDm7QITTFpBOzxRccMZEJfewWg,2508
|
|
1055
1056
|
angr/procedures/libc/fprintf.py,sha256=595hVR2mvmi8E2xQ16ibDibFiPpRP_yHOCOqCjdwPbo,765
|
|
1056
1057
|
angr/procedures/libc/fputc.py,sha256=TVRjiT7xsD00svLIPEXdN7yEL6fScd2pUirrBOtGPJg,572
|
|
@@ -1381,7 +1382,7 @@ angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
|
1381
1382
|
angr/utils/funcid.py,sha256=Rd4r8juv2IpeMtCpPp4wxJoEZTnZZ1NsxdT42tvrKVA,6353
|
|
1382
1383
|
angr/utils/graph.py,sha256=-8cipOvaBeD4owh2cksAwBgcIx2jOeKZa-zcFk73WeM,34787
|
|
1383
1384
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1384
|
-
angr/utils/library.py,sha256=
|
|
1385
|
+
angr/utils/library.py,sha256=N8-7DTJhbBFe9f-Yvx0--dHs43nAEDcTXhqm4aUBOj0,7386
|
|
1385
1386
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
1386
1387
|
angr/utils/mp.py,sha256=y6Q0nDOykRZvcQ805DZpcJHQTGN-gqFi0eERGNhb3C0,1903
|
|
1387
1388
|
angr/utils/orderedset.py,sha256=aGfmLdOS77nzz2eoPpCqRICqzaAeBnuis1Et_I_hiZg,2047
|
|
@@ -1392,9 +1393,9 @@ angr/utils/vex.py,sha256=epcrCexi_NjKnPGM2gfpiRsUea_Scd-71UMuF32ZAQo,306
|
|
|
1392
1393
|
angr/utils/ssa/__init__.py,sha256=xbuVllFoPane9lHACdRQP5OO99Mca-4sqpFrtoAvnxo,17464
|
|
1393
1394
|
angr/utils/ssa/tmp_uses_collector.py,sha256=digAUQpYoFR1VYfwoXlF3T1pYdDi6Pdq_ck54SjMabQ,813
|
|
1394
1395
|
angr/utils/ssa/vvar_uses_collector.py,sha256=HewqUQluNE9EsaiLeFo7LaBvws_DDBDYNt9RBExy464,1367
|
|
1395
|
-
angr-9.2.
|
|
1396
|
-
angr-9.2.
|
|
1397
|
-
angr-9.2.
|
|
1398
|
-
angr-9.2.
|
|
1399
|
-
angr-9.2.
|
|
1400
|
-
angr-9.2.
|
|
1396
|
+
angr-9.2.175.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
1397
|
+
angr-9.2.175.dist-info/METADATA,sha256=RDw_0YRJ9tPFWw6D_zvyjZ1Cagq2Kp9QeTCTA8_FU-8,4477
|
|
1398
|
+
angr-9.2.175.dist-info/WHEEL,sha256=OJ2zpOfp3Fst0GC5jHtFuY8tAf46LLgZ9O920dE4b3c,100
|
|
1399
|
+
angr-9.2.175.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1400
|
+
angr-9.2.175.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1401
|
+
angr-9.2.175.dist-info/RECORD,,
|