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.
698 B
698 B
Command: probeleak
usage: probeleak [-h] [address] [count] [max_distance]
Pointer scan for possible offset leaks. Examples: probeleak $rsp 0x64 - leaks 0x64 bytes starting at stack pointer and search for valid pointers probeleak $rsp 0x64 0x10 - as above, but pointers may point 0x10 bytes outside of memory page
| Positional Argument | Info |
|---|---|
| address | Leak memory address (default: $sp) |
| count | Leak size in bytes (default: 64) |
| max_distance | Max acceptable distance between memory page boundary and leaked pointer (default: 0) |
| Optional Argument | Info |
|---|---|
| --help | show this help message and exit |