1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-24 01:25:37 +01:00
pwncat/gtfobinstest.py

40 lines
944 B
Python
Raw Normal View History

#!/usr/bin/env python3
from pwncat.gtfobins import *
import subprocess
def which(path: str, quote=False):
try:
output = subprocess.check_output(f"which {path}", shell=True)
except subprocess.CalledProcessError:
return None
return output.decode("utf-8").strip()
gtfo = GTFOBins("data/gtfobins.json", which)
binary_to_test = "socat"
capabilities_to_test = Capability.WRITE
our_shell = "/bin/bash"
socat = gtfo.find_binary(binary_to_test)
print(socat)
print(vars(socat))
methods = socat.iter_methods(
which(binary_to_test), caps=capabilities_to_test, stream=None
)
for method in methods:
print(method)
print(method.build(lfile="/tmp/test", data="hello")[0])
break
# print(method.build(shell=our_shell)[0])
# print(method.build(lfile="/etc/shadow", suid=True)[0])
# all_binaries = list(gtfo.iter_methods(Capability.SHELL))
# print(all_binaries[0].build(shell="/bin/bash", suid=True))