- the challenge checks for a specific parent process : binary - the challenge checks for a specific process at the other end of stdin : cat - the challenge checks for a specific process at the other end of stdout : cat - the challenge will force the parent process to solve a number of arithmetic problems : 50 - the challenge will use the following arithmetic operations in its arithmetic problems : +*&^%| - the complexity (in terms of nested expressions) of the arithmetic problems : 5
[FAIL] Executable must be ‘cat’. Yours is: python3.8
这怎么看都像是pwn.process的问题,因此我尝试了不同的进程创建方式:subprocess.run,subprocess.Popen,但最后都病情稳定:Yours is: python3.8!我开始变得焦躁以及感受到备受折磨,并且开始逃避level139,有一种阴影笼罩在我的脑海中:用Python是解决不了问题的,对level139使用Golang/C吧!
defresolve_fd_path(pid, fd): path = os.path.realpath(f"/proc/{pid}/fd/{fd}") if path.startswith(f"/proc/{pid}/fd/"): # fixup for sockets and pipes path = os.path.basename(path) return path
defresolve_fd_pipe_partner(pid, fd, parent_ok=False): our_pipe = resolve_fd_path(pid, fd) for p in psutil.process_iter(): if p == SELF: continue if p.pid == PARENT.pid andnot parent_ok: continue
try: for ofd in os.listdir(f"/proc/{p.pid}/fd"): their_pipe = resolve_fd_path(p.pid, int(ofd)) if their_pipe == our_pipe: return p.pid except PermissionError: pass
defcheck_exe_basename(process: psutil.Process, basename): print(f"[INFO] The process' executable is {process.exe()}.") actual_basename = os.path.basename(os.path.realpath(shutil.which(basename))) print(f"[INFO] To pass the checks, the executable must be {actual_basename}.") print(process.exe()) assert ( os.path.basename(process.exe()) == actual_basename ), f"Executable must be '{basename}'. Yours is: {os.path.basename(process.exe())}"
<bound method Process.exe of psutil.Process(pid=36010, name='python', status='running', started='23:17:48')> [INFO] The process' executable is /usr/bin/python3.11. [INFO] To pass the checks, the executable must be cat. /usr/bin/python3.11 Traceback (most recent call last): File"/home/gardener/Play/fun.py", line56, in <module> check_exe_basename(ps_0, "cat") File"/home/gardener/Play/fun.py", line48, in check_exe_basename os.path.basename(process.exe()) == actual_basename AssertionError: Executable must be 'cat'. Yours is: python3.11