小然同学 发表于 2020-5-26 17:55:58

字符串为"\x68"和input输入\x68一样吗?

str_shellcode1 = input(" =>")
str_shellcode2 = "\x68"
if str_shellcode1 != str_shellcode2:
    print("不等于")

那么如何让输入\x68真正等于字符串中为"\x68"?

永恒的蓝色梦想 发表于 2020-5-26 17:58:17

输入 h 就等于 "\x68" 了。

hrp 发表于 2020-5-26 19:08:07

str_shellcode2 = "\\x68"
页: [1]
查看完整版本: 字符串为"\x68"和input输入\x68一样吗?