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>
101 lines
3.5 KiB
Python
Executable file
101 lines
3.5 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
__package__ = __package__ or "tests.factory" # pylint:disable=redefined-builtin
|
|
|
|
import os
|
|
import unittest
|
|
|
|
import angr
|
|
from tests.common import bin_location
|
|
|
|
test_location = os.path.join(bin_location, "tests")
|
|
|
|
|
|
# pylint: disable=missing-class-docstring
|
|
# pylint: disable=no-self-use
|
|
class TestArgc(unittest.TestCase):
|
|
def test_mips(self):
|
|
proj = angr.Project(os.path.join(test_location, "mips", "argc_decide"), auto_load_libs=False)
|
|
r_addr = 0x4006F4
|
|
|
|
s = proj.factory.entry_state(args=["aaa"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 1
|
|
|
|
s = proj.factory.entry_state(args=["aaa", "bbb"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 0
|
|
|
|
def test_mipsel(self):
|
|
proj = angr.Project(os.path.join(test_location, "mipsel", "argc_decide"), auto_load_libs=False)
|
|
r_addr = 0x400708
|
|
s = proj.factory.entry_state(args=["aaa", "bbb"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 1
|
|
|
|
s = proj.factory.entry_state(args=["aaa"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 0
|
|
|
|
def test_i386(self):
|
|
proj = angr.Project(os.path.join(test_location, "i386", "argc_decide"), auto_load_libs=False)
|
|
r_addr = 0x80483D4
|
|
s = proj.factory.entry_state(args=["aaa"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 1
|
|
|
|
s = proj.factory.entry_state(args=["aaa", "bbb"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 0
|
|
|
|
def test_amd64(self):
|
|
proj = angr.Project(os.path.join(test_location, "x86_64", "argc_decide"), auto_load_libs=False)
|
|
r_addr = 0x4004C7
|
|
s = proj.factory.entry_state(args=["aaa"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 1
|
|
|
|
s = proj.factory.entry_state(args=["aaa", "bbb"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 0
|
|
|
|
def test_arm(self):
|
|
proj = angr.Project(os.path.join(test_location, "armel", "argc_decide"), auto_load_libs=False)
|
|
r_addr = 0x1040C
|
|
|
|
s = proj.factory.entry_state(args=["aaa"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 1
|
|
|
|
s = proj.factory.entry_state(args=["aaa", "bbb"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 0
|
|
|
|
def test_ppc32(self):
|
|
proj = angr.Project(os.path.join(test_location, "ppc", "argc_decide"), auto_load_libs=False)
|
|
r_addr = 0x10000404
|
|
|
|
s = proj.factory.entry_state(args=["aaa"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 1
|
|
|
|
s = proj.factory.entry_state(args=["aaa", "bbb"], env={"HOME": "/home/angr"})
|
|
xpl = proj.factory.simulation_manager(s).explore(find=r_addr)
|
|
|
|
assert len(xpl.found) == 0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|