help="Max offset to add to addresses when looking for leak",
)
parser.add_argument(
"-d","--max_depth",default=0x4,nargs="?",help="Maximum depth to follow pointers to"
"-d",
"--max_depth",
type=int,
default=0x4,
nargs="?",
help="Maximum depth to follow pointers to",
)
parser.add_argument(
"-s",
"--step",
nargs="?",
type=int,
default=0x1,
help="Step to add between pointers so they are considered. For example, if this is 4 it would only consider pointers at an offset divisible by 4 from the starting pointer",
)
parser.add_argument(
"--negative_offset",
nargs="?",
type=int,
default=0x0,
help="Max negative offset to search before an address when looking for a leak",