[pwnable.kr] input
문제 암호 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/socket.h> #include <arpa/inet.h> int main(int argc, char* argv(), char* envp()){ printf(“Welcome to pwnable.kr\n”); printf(“Let’s see if you know how to give input to program\n”); printf(“Just give me correct inputs then you will get the flag :)\n”); // argv if(argc != 100) return 0; if(strcmp(argv(‘A’),”\x00″)) return 0; … Read more