// gcc ./checkin_pwn.c -o ./pwn #include #include int main () { long long key = 0xf61df61df61df61d; long long input; puts("Please input the key to login:"); read(0, (char *) &input, 8); if(input == key) { system("/bin/sh"); } }