这是一个reverse题目,你做吧
Creato il: 8 agosto 2026
Risposto usando GPT-5.6 Thinking da Chat01
Creato il: 8 agosto 2026
Risposto usando GPT-5.6 Thinking da Chat01
这是一个reverse题目,你做吧
做出来了。
flag:
text{hell0_w0rld}
关键逻辑在 0x1400118c0 附近:
text{hello_world}
所以字符串被修改成:asmcmp eax, 0x6f ; 'o' jne ... mov byte ptr [...], 0x30 ; 改成 '0'
text{hell0_w0rld}
%20s 读取输入,然后:
cstrncmp(input, "{hell0_w0rld}", strlen("{hell0_w0rld}"))
textthis is the right flag!
顺带一提,这题还有个小瑕疵:因为用的是 strncmp(..., 13),所以理论上只要前 13 个字符是 {hell0_w0rld} 就能通过,后面再跟字符也可以。