목록Study/시스템 (30)
메모장 입니다2
Python] payload를 입력값 크기에 맞춰서 늘리기
#without ljust size = 입력값 크기 payload = data... payload += '\x00'*(size - len(payload)) #using ljust, rjust payload = data... size = 입력값 크기 payload = payload.ljust(size, '\x00')
Study/시스템
2019. 7. 29. 22:51
Debugging python with gdb
wiki python https://wiki.python.org/moin/DebuggingWithGdb DebuggingWithGdb - Python Wiki There are types of bugs that are difficult to debug from within Python: segfaults (not uncaught Python exceptions) hung processes (in cases where you can't get a Python traceback or debug with pdb) out of control daemon processes In these cases, you can tr wiki.python.org
Study/시스템
2019. 7. 23. 22:41
pwnable.kr] exploitable
보호되어 있는 글입니다.
Study/시스템
2019. 7. 15. 16:07
linux] rsa collision on ssh
ssh-keygen -R [ IP or DomainName]
Study/시스템
2019. 6. 8. 19:21
pwnable.tw] applestore - 진행중
보호되어 있는 글입니다.
Study/시스템
2019. 5. 31. 20:24
pwnable.tw] calc
보호되어 있는 글입니다.
Study/시스템
2019. 5. 26. 20:20
pwnable.kr] ascii
보호되어 있는 글입니다.
Study/시스템
2019. 5. 26. 15:36