Skip to content

Search

auto_save = pwndbg.config.add_param('auto-save-search', False, 'automatically pass --save to "search" command') module-attribute

parser = argparse.ArgumentParser(formatter_class=argparse.RawTextHelpFormatter, description="Search memory for byte sequences, strings, pointers, and integer values.\n\nBy default search results are cached. If you want to cache all results, but only print a subset, use --trunc-out. If you want to cache only a subset of results, and print the results immediately, use --limit. The latter is specially useful if you're searching a huge section of memory.\n\n") module-attribute

saved: Set[int] = set() module-attribute

print_search_hit(address)

Prints out a single search hit.

Parameters:

Name Type Description Default
address(int)

Address to print

required

search(type, arch, asmbp, hex, executable, writable, step, limit, aligned, value, mapping_name, save, next, trunc_out)