(Dreamhack) 라이브러리로 돌아가기(pwnbar)
문제 라이브러리로 돌아가기 | 전쟁 게임 | 꿈 해킹 도서관으로 돌아가기 설명 이것은 Exploit Tech: Return to Library의 연습 문제입니다. dreamhack.io 암호 // Name: rtl.c // Compile: gcc -o rtl rtl.c -fno-PIE -no-pie #include <stdio.h> #include <unistd.h> const char* binsh = “/bin/sh”; int main() { char buf(0x30); setvbuf(stdin, 0, _IONBF, 0); setvbuf(stdout, 0, _IONBF, 0); … Read more