오늘은 pwntool에 대해 알아보았다.우선 오늘의 예제 문제는#include #include #include int main() { int i, a, b, ans; srand(time(0)); for (i = 0; i "); scanf("%d", &ans); if (a + b == ans) { printf("Correct!\n"); } else { printf("Wrong!\n"); return 0; } } printf("Congrats! flag{welcome_to_pwntools}");}오늘의 예제 문제는 덧셈뺄셈 100문제를 풀이 하면 문제가 풀리는 워게임을 풀었다.당연히 손수 100문제를 다풀면 시간이 무척 오래 걸리지만 pwnto..