'2016/05/31'에 해당되는 글 2건

  1. 2016.05.31 angr 기본 코드
  2. 2016.05.31 CTF 바이너리 sockat 으로 xinetd 데몬처럼 띄우기
2016. 5. 31. 16:05

╰─$ cat anger.py 

import angr

p = angr.Project('/mnt/shared/serial', load_options={'auto_load_libs':False})

ex = p.surveyors.Explorer(find=(0x400e5c, ), avoid=(0x400e78,))

ex.run()

print ex.found[0].state.posix.dumps(0)

print ex.found[0].state.posix.dumps(1) 

 


Posted by k1rha
2016. 5. 31. 08:55

socat TCP-LISTEN:포트,reuseaddr,fork EXEC:./바이너리

'System_Hacking' 카테고리의 다른 글

QEMU 명령어 옵션  (0) 2016.07.10
angr 기본 코드  (0) 2016.05.31
32bit linux shellcode (/bin/sh)  (0) 2016.05.17
[검색용][python] Remote exploit 할때 기본 포멧  (0) 2016.05.06
SPI 통신으로 firmware dump 뜨기  (0) 2016.02.21
Posted by k1rha