mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
242 lines
6.3 KiB
Python
242 lines
6.3 KiB
Python
from __future__ import annotations
|
|
|
|
import re
|
|
|
|
import gdb
|
|
|
|
from . import get_binary
|
|
|
|
SEARCH_BINARY = get_binary("search_memory.out")
|
|
SEARCH_PATTERN = 0xD00DBEEF
|
|
SEARCH_PATTERN2 = 0xABCDEF1234567890
|
|
|
|
|
|
def test_command_search_literal(start_binary):
|
|
"""
|
|
Searches for a string literal in a few different ways
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
# Perform three equivalent searches, and chop off the first line of verbosity.
|
|
result0 = gdb.execute("search -t bytes Hello!", to_string=True).splitlines()[1:]
|
|
result1 = gdb.execute("search -t bytes -x 48656c6c6f21", to_string=True).splitlines()[1:]
|
|
result2 = gdb.execute("search -t string Hello!", to_string=True).splitlines()[1:]
|
|
|
|
assert result0 == result1
|
|
assert result1 == result2
|
|
|
|
for line in result0:
|
|
assert re.match(".* .* 0x216f6c6c6548 /\\* 'Hello!' \\*/", line) is not None
|
|
|
|
|
|
def test_command_search_limit_single_page(start_binary):
|
|
"""
|
|
Tests simple search limit for single memory page
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
search_limit = 10
|
|
result_str = gdb.execute(
|
|
f"search --dword {SEARCH_PATTERN} -l {search_limit} -w", to_string=True
|
|
)
|
|
result_count = 0
|
|
result_value = None
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
if not result_value:
|
|
result_value = line.split(" ")[2]
|
|
result_count += 1
|
|
|
|
assert result_count == search_limit
|
|
assert result_value == hex(SEARCH_PATTERN)
|
|
|
|
|
|
def test_command_search_limit_multiple_pages(start_binary):
|
|
"""
|
|
Tests simple search limit for multiple memory pages
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
def filter_results(line):
|
|
return hex(SEARCH_PATTERN2).lower() in line.lower()
|
|
|
|
total_entries = 3
|
|
result_str: str = gdb.execute(f"search -8 {SEARCH_PATTERN2}", to_string=True)
|
|
result_count = len(list(filter(filter_results, result_str.splitlines())))
|
|
assert result_count == total_entries
|
|
|
|
search_limit = 2
|
|
result_str = gdb.execute(f"search -8 {SEARCH_PATTERN2} -l {search_limit}", to_string=True)
|
|
result_count = len(list(filter(filter_results, result_str.splitlines())))
|
|
assert result_count == search_limit
|
|
|
|
|
|
def test_command_search_alignment(start_binary):
|
|
"""
|
|
Tests aligned search
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
alignment = 8
|
|
result_str = gdb.execute(f"search --dword {SEARCH_PATTERN} -a {alignment} -w", to_string=True)
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_address = line.split(" ")[1]
|
|
assert int(result_address, 16) % alignment == 0
|
|
|
|
|
|
def test_command_search_step(start_binary):
|
|
"""
|
|
Tests stepped search
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
step = 0x1000
|
|
result_str = gdb.execute(f"search --dword {SEARCH_PATTERN} -s {step} -w", to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_count += 1
|
|
|
|
# We allocate 0x100000 bytes
|
|
assert result_count == 0x100
|
|
|
|
|
|
def test_command_search_byte_width(start_binary):
|
|
"""
|
|
Tests 1-byte search
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute("search --byte 0xef -w", to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_count += 1
|
|
|
|
assert result_count > 0x100
|
|
|
|
|
|
def test_command_search_word_width(start_binary):
|
|
"""
|
|
Tests 2-byte word search
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute("search --word 0xbeef -w", to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_count += 1
|
|
|
|
assert result_count > 0x100
|
|
|
|
|
|
def test_command_search_dword_width(start_binary):
|
|
"""
|
|
Tests 4-byte dword search
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute("search --dword 0xd00dbeef -w", to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_count += 1
|
|
|
|
assert result_count > 0x100
|
|
|
|
|
|
def test_command_search_qword_width(start_binary):
|
|
"""
|
|
Tests 8-byte qword search
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute("search --dword 0x00000000d00dbeef -w", to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_count += 1
|
|
|
|
assert result_count > 0x100
|
|
|
|
|
|
def test_command_search_rwx(start_binary):
|
|
"""
|
|
Tests searching for rwx memory only
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute("search --dword 0x00000000d00dbeef -w -x", to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("[anon_"):
|
|
result_count += 1
|
|
|
|
assert result_count == 0
|
|
|
|
|
|
def test_command_search_asm(start_binary):
|
|
"""
|
|
Tests searching for asm instructions
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute('search --asm "add rax, rdx" search_memory', to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("search_memory"):
|
|
result_count += 1
|
|
assert result_count == 2
|
|
|
|
|
|
def test_command_set_breakpoint_search_asm(start_binary):
|
|
"""
|
|
Tests setting breakpoints on found asm instructions
|
|
"""
|
|
start_binary(SEARCH_BINARY)
|
|
|
|
gdb.execute("break break_here")
|
|
gdb.execute("run")
|
|
|
|
result_str = gdb.execute('search --asmbp "add rax, rdx" search_memory', to_string=True)
|
|
result_count = 0
|
|
for line in result_str.split("\n"):
|
|
if line.startswith("Breakpoint"):
|
|
result_count += 1
|
|
assert result_count == 2
|