ptmalloc2_tracking ¤
Functions:
Attributes:
-
parser– -
subparsers– -
enable– -
disable– -
toggle_break–
parser module-attribute ¤
parser = ArgumentParser(
description="Manages the heap tracker.\n\nThe heap tracker is a module that tracks usage of the GLibc heap and looks for\nuser errors such as double frees and use after frees.\n\nCurrently, the following errors can be detected:\n - Use After Free\n"
)
subparsers module-attribute ¤
subparsers = add_subparsers(
required=True,
description="Used to enable, disable and query information about the tracker",
)
toggle_break module-attribute ¤
toggle_break = add_parser(
"toggle-break",
help="Toggles whether possible UAF conditions will pause execution",
)