mirror of
https://github.com/angr/angr
synced 2026-08-17 12:23:11 -04:00
* Enable ruff isort rule * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
32 lines
999 B
Python
Executable file
32 lines
999 B
Python
Executable file
#!/usr/bin/env python3
|
|
# pylint: disable=missing-class-docstring,no-self-use,line-too-long
|
|
from __future__ import annotations
|
|
|
|
__package__ = __package__ or "tests.analyses" # pylint:disable=redefined-builtin
|
|
|
|
import os
|
|
import unittest
|
|
|
|
import angr
|
|
from tests.common import bin_location
|
|
|
|
test_location = os.path.join(bin_location, "tests")
|
|
|
|
|
|
class TestProximityGraph(unittest.TestCase):
|
|
def test_fauxware(self):
|
|
bin_path = os.path.join(test_location, "x86_64", "fauxware")
|
|
proj = angr.Project(bin_path, auto_load_libs=False)
|
|
|
|
cfg = proj.analyses.CFG(data_references=True, cross_references=True, normalize=True)
|
|
func = cfg.kb.functions["main"]
|
|
|
|
proj.analyses.Proximity(func, cfg.model, cfg.kb.xrefs)
|
|
|
|
# once we have decompiled code, things are different...
|
|
dec = proj.analyses.Decompiler(func, cfg=cfg.model)
|
|
proj.analyses.Proximity(func, cfg.model, cfg.kb.xrefs, decompilation=dec)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|