heap-trm / heaptrm /__init__.py
amarck's picture
Add heaptrm package: v2 harness, CLI, pwntools integration, CVE tests
22374d1
raw
history blame contribute delete
416 Bytes
"""
heaptrm - Tiny Recursive Model heap exploit detector.
Usage:
from heaptrm import HeapMonitor
# Standalone
monitor = HeapMonitor()
results = monitor.scan("./vulnerable_binary", args=["input"])
# With pwntools
from pwn import process
p = process("./vulnerable_binary")
monitor = HeapMonitor.attach(p)
monitor.check() # returns exploit probability
"""
__version__ = "0.1.0"