angr 9.2.148__py3-none-manylinux2014_x86_64.whl → 9.2.150__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/__main__.py +100 -37
- angr/analyses/calling_convention/calling_convention.py +42 -2
- angr/analyses/cfg/cfg_emulated.py +5 -2
- angr/analyses/cfg/cfg_fast.py +48 -46
- angr/analyses/decompiler/ail_simplifier.py +65 -32
- angr/analyses/decompiler/block_simplifier.py +20 -6
- angr/analyses/decompiler/clinic.py +80 -13
- 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/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/flip_boolean_cmp.py +2 -1
- 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/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 +141 -10
- angr/analyses/decompiler/utils.py +23 -1
- angr/analyses/disassembly.py +2 -1
- angr/analyses/patchfinder.py +1 -1
- angr/analyses/s_reaching_definitions/s_rda_view.py +1 -0
- 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 +25 -6
- angr/analyses/variable_recovery/engine_ail.py +44 -5
- angr/analyses/variable_recovery/engine_base.py +35 -12
- angr/analyses/variable_recovery/variable_recovery_fast.py +33 -2
- angr/calling_conventions.py +23 -5
- angr/engines/light/engine.py +7 -0
- angr/engines/pcode/lifter.py +7 -0
- angr/knowledge_plugins/functions/function.py +68 -0
- angr/knowledge_plugins/propagations/states.py +5 -2
- angr/knowledge_plugins/variables/variable_manager.py +3 -3
- angr/procedures/definitions/__init__.py +1 -1
- angr/procedures/definitions/types_stl.py +22 -0
- angr/sim_type.py +251 -130
- angr/utils/graph.py +51 -27
- {angr-9.2.148.dist-info → angr-9.2.150.dist-info}/METADATA +7 -7
- {angr-9.2.148.dist-info → angr-9.2.150.dist-info}/RECORD +61 -55
- {angr-9.2.148.dist-info → angr-9.2.150.dist-info}/WHEEL +1 -1
- {angr-9.2.148.dist-info → angr-9.2.150.dist-info}/licenses/LICENSE +3 -0
- {angr-9.2.148.dist-info → angr-9.2.150.dist-info}/entry_points.txt +0 -0
- {angr-9.2.148.dist-info → angr-9.2.150.dist-info}/top_level.txt +0 -0
angr/utils/graph.py
CHANGED
|
@@ -672,9 +672,40 @@ class GraphUtils:
|
|
|
672
672
|
addrs_to_index = {n.addr: i for (i, n) in enumerate(post_order)}
|
|
673
673
|
return sorted(nodes, key=lambda n: addrs_to_index[n.addr], reverse=True)
|
|
674
674
|
|
|
675
|
+
@staticmethod
|
|
676
|
+
def _sort_node(node):
|
|
677
|
+
"""
|
|
678
|
+
A sorter to make a deterministic order of nodes.
|
|
679
|
+
"""
|
|
680
|
+
if hasattr(node, "addr"):
|
|
681
|
+
return node.addr
|
|
682
|
+
return node
|
|
683
|
+
|
|
684
|
+
@staticmethod
|
|
685
|
+
def _sort_edge(edge):
|
|
686
|
+
"""
|
|
687
|
+
A sorter to make a deterministic order of edges.
|
|
688
|
+
"""
|
|
689
|
+
_src, _dst = edge
|
|
690
|
+
src_addr, dst_addr = 0, 0
|
|
691
|
+
if hasattr(_src, "addr"):
|
|
692
|
+
src_addr = _src.addr
|
|
693
|
+
elif isinstance(_src, int):
|
|
694
|
+
src_addr = _src
|
|
695
|
+
|
|
696
|
+
if hasattr(_dst, "addr"):
|
|
697
|
+
dst_addr = _dst.addr
|
|
698
|
+
elif isinstance(_dst, int):
|
|
699
|
+
dst_addr = _dst
|
|
700
|
+
|
|
701
|
+
return src_addr + dst_addr
|
|
702
|
+
|
|
675
703
|
@staticmethod
|
|
676
704
|
def quasi_topological_sort_nodes(
|
|
677
|
-
graph: networkx.DiGraph,
|
|
705
|
+
graph: networkx.DiGraph,
|
|
706
|
+
nodes: list | None = None,
|
|
707
|
+
loop_heads: list | None = None,
|
|
708
|
+
panic_mode_threshold: int = 3000,
|
|
678
709
|
) -> list:
|
|
679
710
|
"""
|
|
680
711
|
Sort a given set of nodes from a graph based on the following rules:
|
|
@@ -688,6 +719,7 @@ class GraphUtils:
|
|
|
688
719
|
:param graph: A local transition graph of the function.
|
|
689
720
|
:param nodes: A list of nodes to sort. None if you want to sort all nodes inside the graph.
|
|
690
721
|
:param loop_heads: A list of nodes that should be treated loop heads.
|
|
722
|
+
:param panic_mode_threshold: Threshold of nodes in an SCC to begin aggressively removing edges.
|
|
691
723
|
:return: A list of ordered nodes.
|
|
692
724
|
"""
|
|
693
725
|
|
|
@@ -703,27 +735,8 @@ class GraphUtils:
|
|
|
703
735
|
# find all strongly connected components in the graph
|
|
704
736
|
sccs = [scc for scc in networkx.strongly_connected_components(graph) if len(scc) > 1]
|
|
705
737
|
|
|
706
|
-
def _sort_edge(edge):
|
|
707
|
-
"""
|
|
708
|
-
A sorter to make a deterministic order of edges.
|
|
709
|
-
"""
|
|
710
|
-
_src, _dst = edge
|
|
711
|
-
src_addr, dst_addr = 0, 0
|
|
712
|
-
if hasattr(_src, "addr"):
|
|
713
|
-
src_addr = _src.addr
|
|
714
|
-
elif isinstance(_src, int):
|
|
715
|
-
src_addr = _src
|
|
716
|
-
|
|
717
|
-
if hasattr(_dst, "addr"):
|
|
718
|
-
dst_addr = _dst.addr
|
|
719
|
-
elif isinstance(_dst, int):
|
|
720
|
-
dst_addr = _dst
|
|
721
|
-
|
|
722
|
-
return src_addr + dst_addr
|
|
723
|
-
|
|
724
738
|
# collapse all strongly connected components
|
|
725
|
-
|
|
726
|
-
for src, dst in edges:
|
|
739
|
+
for src, dst in sorted(graph.edges(), key=GraphUtils._sort_edge):
|
|
727
740
|
scc_index = GraphUtils._components_index_node(sccs, src)
|
|
728
741
|
if scc_index is not None:
|
|
729
742
|
src = SCCPlaceholder(scc_index)
|
|
@@ -754,7 +767,13 @@ class GraphUtils:
|
|
|
754
767
|
ordered_nodes = []
|
|
755
768
|
for n in tmp_nodes:
|
|
756
769
|
if isinstance(n, SCCPlaceholder):
|
|
757
|
-
GraphUtils._append_scc(
|
|
770
|
+
GraphUtils._append_scc(
|
|
771
|
+
graph,
|
|
772
|
+
ordered_nodes,
|
|
773
|
+
sccs[n.scc_id],
|
|
774
|
+
loop_head_candidates=loop_heads,
|
|
775
|
+
panic_mode_threshold=panic_mode_threshold,
|
|
776
|
+
)
|
|
758
777
|
else:
|
|
759
778
|
ordered_nodes.append(n)
|
|
760
779
|
|
|
@@ -771,7 +790,11 @@ class GraphUtils:
|
|
|
771
790
|
|
|
772
791
|
@staticmethod
|
|
773
792
|
def _append_scc(
|
|
774
|
-
graph: networkx.DiGraph,
|
|
793
|
+
graph: networkx.DiGraph,
|
|
794
|
+
ordered_nodes: list,
|
|
795
|
+
scc: set,
|
|
796
|
+
loop_head_candidates: list | None = None,
|
|
797
|
+
panic_mode_threshold: int = 3000,
|
|
775
798
|
) -> None:
|
|
776
799
|
"""
|
|
777
800
|
Append all nodes from a strongly connected component to a list of ordered nodes and ensure the topological
|
|
@@ -780,6 +803,7 @@ class GraphUtils:
|
|
|
780
803
|
:param graph: The graph where all nodes belong to.
|
|
781
804
|
:param ordered_nodes: Ordered nodes.
|
|
782
805
|
:param scc: A set of nodes that forms a strongly connected component in the graph.
|
|
806
|
+
:param panic_mode_threshold: Threshold of nodes in an SCC to begin aggressively removing edges.
|
|
783
807
|
"""
|
|
784
808
|
|
|
785
809
|
loop_head = None
|
|
@@ -817,8 +841,8 @@ class GraphUtils:
|
|
|
817
841
|
break
|
|
818
842
|
|
|
819
843
|
if loop_head is None:
|
|
820
|
-
#
|
|
821
|
-
loop_head =
|
|
844
|
+
# pick the first one
|
|
845
|
+
loop_head = sorted(scc, key=GraphUtils._sort_node)[0]
|
|
822
846
|
|
|
823
847
|
subgraph: networkx.DiGraph = graph.subgraph(scc).copy()
|
|
824
848
|
for src, _ in list(subgraph.in_edges(loop_head)):
|
|
@@ -828,8 +852,8 @@ class GraphUtils:
|
|
|
828
852
|
# will take too long to converge if we only remove one node out of the component each time. we introduce a
|
|
829
853
|
# panic mode that will aggressively remove edges
|
|
830
854
|
|
|
831
|
-
if len(subgraph) >
|
|
832
|
-
for n0, n1 in sorted(dfs_back_edges(subgraph, loop_head), key=
|
|
855
|
+
if len(subgraph) > panic_mode_threshold and len(subgraph.edges) > len(subgraph) * 1.4:
|
|
856
|
+
for n0, n1 in sorted(dfs_back_edges(subgraph, loop_head), key=GraphUtils._sort_edge):
|
|
833
857
|
subgraph.remove_edge(n0, n1)
|
|
834
858
|
if len(subgraph.edges) <= len(subgraph) * 1.4:
|
|
835
859
|
break
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: angr
|
|
3
|
-
Version: 9.2.
|
|
3
|
+
Version: 9.2.150
|
|
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.150
|
|
21
|
+
Requires-Dist: archinfo==9.2.150
|
|
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.150
|
|
26
|
+
Requires-Dist: cle==9.2.150
|
|
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.150
|
|
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=DwSePTIbe8xdMgBvvZlfejFZYiB6mXcJjYv_z_rrli0,9153
|
|
2
|
+
angr/__main__.py,sha256=AK9V6uPZ58UuTKmmiH_Kgn5pG9AvjnmJCPOku69A-WU,4993
|
|
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
|
|
@@ -20,7 +20,7 @@ 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
|
|
@@ -41,14 +41,14 @@ angr/analyses/complete_calling_conventions.py,sha256=nVrDHhCV3cawD_KxkAYj2fsszAs
|
|
|
41
41
|
angr/analyses/congruency_check.py,sha256=QeYRrdrs_iluLLnKz3KUHkCTPRVl5PgM2T0ZXd786HA,16165
|
|
42
42
|
angr/analyses/datagraph_meta.py,sha256=Ng0jqLD5ucRn_fBXhYq3l6scs3kczRk6Sk-Sen1forc,3414
|
|
43
43
|
angr/analyses/ddg.py,sha256=AWPPsL2bfTAua5meuQfPFL6b29PLpCLZzw-LGCv5iVo,63214
|
|
44
|
-
angr/analyses/disassembly.py,sha256=
|
|
44
|
+
angr/analyses/disassembly.py,sha256=iwKQZ7mqQCdGV3IO-kVMif8-c6tSbKuhq2uIb0JFkK0,46341
|
|
45
45
|
angr/analyses/disassembly_utils.py,sha256=Pj9vnyji9fBDL3a3vAo2D3H4CfB-XrvVDLIsNXrp9pU,2877
|
|
46
46
|
angr/analyses/dominance_frontier.py,sha256=kRoOCr3EaIUW1YnvtjmKFJW65zYsJHNe-HtVx2LR15s,2002
|
|
47
47
|
angr/analyses/find_objects_static.py,sha256=27uxIeRA8nJ1XiuGay0oGVYKDvWOI9HFVSuPVXHJT7U,10264
|
|
48
48
|
angr/analyses/init_finder.py,sha256=lSiBfmKExmhK7wsLGsBaJYQKjW9t7S5mlcH3U--B6CI,9259
|
|
49
49
|
angr/analyses/loop_analysis.py,sha256=up6N3SZzya6N6OlKldo_MP36DqiY_tMbVdFWSM8fByU,9311
|
|
50
50
|
angr/analyses/loopfinder.py,sha256=eNH41_3MW10ccwzw6SGsAuILTKttxikDm2e3c-FUlVI,7030
|
|
51
|
-
angr/analyses/patchfinder.py,sha256=
|
|
51
|
+
angr/analyses/patchfinder.py,sha256=yf8FwkWPVOrvMRA90dKZizVz4s4QE-upq6B0Xxn8wj8,5063
|
|
52
52
|
angr/analyses/pathfinder.py,sha256=_prNqmRUSuSt2ZCP8qbvNN7pw7mtM8pWr9IL0AO6XL8,11496
|
|
53
53
|
angr/analyses/proximity_graph.py,sha256=-g7pNpbP2HQhKW3w1Eff23K8vAsgWWYoe3wVxRh3Lhk,16066
|
|
54
54
|
angr/analyses/reassembler.py,sha256=UXrDQNJtn4RUurpbIyMVpQ3AZ0VGVQZatoGHziEHvU0,98357
|
|
@@ -64,7 +64,7 @@ angr/analyses/vsa_ddg.py,sha256=PNJ1vQNdHKYCcuXrsXZohtjrxznaWn6GZY2TfhBoY2Q,1613
|
|
|
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=
|
|
67
|
+
angr/analyses/calling_convention/calling_convention.py,sha256=GpXdhHYDK8nW8Xnma8-iJWaqAIO6o0aykI6QEXrghHo,46229
|
|
68
68
|
angr/analyses/calling_convention/fact_collector.py,sha256=dIQGPHHFDNGgAcx6w4cGmjsdxKEZyu_JFBc8tsk2kWw,28885
|
|
69
69
|
angr/analyses/calling_convention/utils.py,sha256=twkO073RvkkFXnOTc-KYQT1GKUtz0OPjxh0N6AWIriQ,2110
|
|
70
70
|
angr/analyses/cfg/__init__.py,sha256=-w8Vd6FD6rtjlQaQ7MxwmliFgS2zt-kZepAY4gHas04,446
|
|
@@ -72,8 +72,8 @@ angr/analyses/cfg/cfb.py,sha256=scykl1FJvqcTe2x69zreWi0PG_zYMbka3k6tlRwaD_g,1536
|
|
|
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
74
|
angr/analyses/cfg/cfg_base.py,sha256=o4uG2ob88DdVcDvA9sdjDUo7GPKt9ERXJEgWnKiWDdA,123440
|
|
75
|
-
angr/analyses/cfg/cfg_emulated.py,sha256=
|
|
76
|
-
angr/analyses/cfg/cfg_fast.py,sha256=
|
|
75
|
+
angr/analyses/cfg/cfg_emulated.py,sha256=wL0ABJMZ8EwKbNjrpE_eqCkZpHDt4y6lmoQOmAIcJMQ,148235
|
|
76
|
+
angr/analyses/cfg/cfg_fast.py,sha256=1aQtubXAXkw3tCfxRjUD2BXSlRH1obMbmaDQvs9qrzo,228422
|
|
77
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
|
|
@@ -101,13 +101,13 @@ 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=
|
|
108
|
+
angr/analyses/decompiler/block_simplifier.py,sha256=Di5UXgBIXp0pa3_ubHY4k9vj927xAFR3oCUZ16Q3WvE,14229
|
|
109
109
|
angr/analyses/decompiler/callsite_maker.py,sha256=ZjtLdxDCLS0WPqOik9bCek2LyuAtQNYA4V-yqGLeENo,23032
|
|
110
|
-
angr/analyses/decompiler/clinic.py,sha256=
|
|
110
|
+
angr/analyses/decompiler/clinic.py,sha256=b6H-t_uxGE21zXujPpyKk3fSg17waZEYo2BiQ0Zaneg,140692
|
|
111
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
|
|
@@ -126,7 +126,7 @@ 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=li5ijfTZpkRvDFh0zvLj90jyoBLDIgDapc9suc5OT6s,40443
|
|
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
|
|
@@ -141,10 +141,10 @@ 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
|
|
@@ -152,16 +152,18 @@ angr/analyses/decompiler/optimization_passes/const_derefs.py,sha256=z9owQb8xNtIa
|
|
|
152
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
|
-
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=
|
|
159
|
-
angr/analyses/decompiler/optimization_passes/inlined_string_transformation_simplifier.py,sha256=
|
|
160
|
+
angr/analyses/decompiler/optimization_passes/flip_boolean_cmp.py,sha256=DFJjYsWf_PXNsUBX98Jh0JsWd3XXEdzbyhQrnEK8Fjw,5118
|
|
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,20 +202,21 @@ 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=
|
|
219
|
+
angr/analyses/decompiler/peephole_optimizations/remove_redundant_bitmasks.py,sha256=yoBN96hMH3L_zfcO13GjDzlsnKmTAXpgRjfR395cR18,4221
|
|
217
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
|
|
@@ -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,15 +255,15 @@ 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
|
|
@@ -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=gi1DMDbqP8TkpxNiNoaTKPGW01Hy_2iPJS-gedeWagY,12110
|
|
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,13 +423,13 @@ 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
|
|
425
430
|
angr/engines/pcode/emulate.py,sha256=36RgLy9bmpB3r_RCyDh3iudhKyaaBtlvLYPf3X1LlOA,16732
|
|
426
431
|
angr/engines/pcode/engine.py,sha256=aFVvBYkVzZ8A5NkC2SblDU6Mlfk0ioVn7xDhp0iG8-8,9930
|
|
427
|
-
angr/engines/pcode/lifter.py,sha256=
|
|
432
|
+
angr/engines/pcode/lifter.py,sha256=cR4Oh6wgjEpAjMvMREdYpGtPOHKEZuf3UnmCm4d4UuE,52481
|
|
428
433
|
angr/engines/soot/__init__.py,sha256=0EUiUmGrPhM-MG9nrvJDYi9cIBrCTx1wff3Z7nRkTGs,92
|
|
429
434
|
angr/engines/soot/engine.py,sha256=rHKbnO9YBOAd1DJ-a33vAMseFt_b3iDhArTFdgmyVsc,17065
|
|
430
435
|
angr/engines/soot/exceptions.py,sha256=if9tvb-SDUb3JVZAhUBOYxbmS_8Aq-7gsVa2kh76O5U,258
|
|
@@ -536,7 +541,7 @@ 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=
|
|
544
|
+
angr/knowledge_plugins/functions/function.py,sha256=SGQ3DnGJF0ps3P4mV_ohnMjdwmVVeAwNuxyPfwLAu00,70456
|
|
540
545
|
angr/knowledge_plugins/functions/function_manager.py,sha256=YWp9Hc-Rx9iYChJ3hFv9Tjat-6ZUidv1xsSZLQ2tL9Q,20469
|
|
541
546
|
angr/knowledge_plugins/functions/function_parser.py,sha256=DTdVwYt6nXLMc0EOh-V_GhvZYQ947UNBaA77qn7Y6Vo,12379
|
|
542
547
|
angr/knowledge_plugins/functions/soot_function.py,sha256=OzCvQPWxnjbwPWTW0JXrQey4zyaayHD_v6ZA7nJ4YJw,4850
|
|
@@ -558,10 +563,10 @@ 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
|
|
@@ -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
|
|
@@ -1364,7 +1370,7 @@ angr/utils/enums_conv.py,sha256=fA6qeoRZ6Cj6gCIS_PZbP4PX7E8IybnYQ90OZGnBVrc,2746
|
|
|
1364
1370
|
angr/utils/env.py,sha256=aO4N2h7DUsUQtTgnC5J_oPHvMxJRur20m5UFSkmy4XU,398
|
|
1365
1371
|
angr/utils/formatting.py,sha256=OWzSfAlKcL09cEtcqxszYWHsRO9tih7hvXD2K9kUZc8,4343
|
|
1366
1372
|
angr/utils/funcid.py,sha256=Rd4r8juv2IpeMtCpPp4wxJoEZTnZZ1NsxdT42tvrKVA,6353
|
|
1367
|
-
angr/utils/graph.py,sha256=
|
|
1373
|
+
angr/utils/graph.py,sha256=yCsmWXU_S-EfOT-I2iAqwZWVi5ASUC3mKCSF8ZGBmzo,31566
|
|
1368
1374
|
angr/utils/lazy_import.py,sha256=7Mx-y-aZFsXX9jNxvEcXT-rO8tL8rknb6D6RbSFOI1M,343
|
|
1369
1375
|
angr/utils/library.py,sha256=z3rFYm7ePZTXNZJuKiQrR0SnlbVb-OzkX0t0U44nXDk,7181
|
|
1370
1376
|
angr/utils/loader.py,sha256=5PtUlonkbqENNg3AMJ4YI3-g5dyyXJ0GP83SwO2dECY,1951
|
|
@@ -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.150.dist-info/licenses/LICENSE,sha256=PmWf0IlSz6Jjp9n7nyyBQA79Q5C2ma68LRykY1V3GF0,1456
|
|
1387
|
+
angr-9.2.150.dist-info/METADATA,sha256=ArmKS_xO7TD2tYLOgol_yy5ANcGpXDh5PQB8wbMzKKg,4910
|
|
1388
|
+
angr-9.2.150.dist-info/WHEEL,sha256=ZRFis1MfkCROPWeMPPexunpZdRYlOSvqoaJDGCX7fqo,108
|
|
1389
|
+
angr-9.2.150.dist-info/entry_points.txt,sha256=Vjh1C8PMyr5dZFMnik5WkEP01Uwr2T73I3a6N32sgQU,44
|
|
1390
|
+
angr-9.2.150.dist-info/top_level.txt,sha256=dKw0KWTbwLXytFvv15oAAG4sUs3ey47tt6DorJG9-hw,5
|
|
1391
|
+
angr-9.2.150.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|