[Dreamhack] basic_exploitation_000(2)
https://oulth.tistory.com/77 python pwntool exploit script 작성팁import from pwn import * 접속 원격 접속 nc process=remote ("pwnable.kr",9000) 원격 접속 ssh shell=ssh("note","pwnable.kr",port=2222,password="guest") p=shell.run('/bin/sh') p.sendline("nc 0 9019")..oulth.tistory.com 📌파이썬으로 pwntool exploit 스크립트 작성하는 방법 1. import하기from pwn import * 2. 원격 접속(tcp connection 만들기) ncr =remote ("주소", 포트 넘버) sshp1 = ..
2022.10.05