PWNABLE] pwntools

노션으로 옮김·2020년 4월 20일
1

uitility

목록 보기
7/18
post-thumbnail

개요

pwntools에서 유용한 기능이나 명령어, 함수를 정리하는 글이다.
추가 내용이 있을 때마다 업데이트 예정


기능

libc 가져오기

elf = ELF('./campnote')
libc = e.libc
offset_printf = libc.symbols['printf']

함수

sendlineafter()

def writeNote(idx, contents):
    p.sendlineafter('>', '2')
    p.sendlineafter(':', str(idx))
    p.sendlineafter(':', contents)

0개의 댓글