Ejemplo n.º 1
0
 def parseheap(self):
     """ Parse heap """
     heapbase = int(gdb.execute("heap",to_string=True).split("\x1b[37m")[1].strip(),16)
     if heapbase :
         angelheap.parse_heap(heapbase)
     else :
         print("heap not found")
Ejemplo n.º 2
0
 def parseheap(self):
     """ Parse heap """
     angelheap.parse_heap()
Ejemplo n.º 3
0
 def parseheap(self):
     """ Parse heap """
     angelheap.parse_heap()
Ejemplo n.º 4
0
 def parseheap(self,*arg):
     """ Parse heap """
     (arena,) = normalize_argv(arg,1)
     angelheap.parse_heap(arena)