2020-12-30 06:36:54 +01:00
|
|
|
#!./env/bin/python
|
2021-01-04 00:22:17 +01:00
|
|
|
import subprocess
|
|
|
|
|
2020-12-30 06:36:54 +01:00
|
|
|
import pwncat.manager
|
2021-01-04 00:22:17 +01:00
|
|
|
import pwncat.platform.windows
|
2021-01-02 00:53:13 +01:00
|
|
|
import time
|
2021-01-22 21:52:25 +01:00
|
|
|
import stat
|
2021-02-15 05:32:05 +01:00
|
|
|
import json
|
2020-12-30 06:36:54 +01:00
|
|
|
|
|
|
|
# Create a manager
|
|
|
|
manager = pwncat.manager.Manager("data/pwncatrc")
|
|
|
|
|
2021-04-10 21:52:47 +02:00
|
|
|
# Tell the manager to create verbose sessions that
|
|
|
|
# log all commands executed on the remote host
|
2021-05-02 20:28:41 +02:00
|
|
|
# manager.config.set("verbose", True, glob=True)
|
2021-04-10 21:52:47 +02:00
|
|
|
|
2020-12-30 06:36:54 +01:00
|
|
|
# Establish a session
|
2021-01-22 21:52:25 +01:00
|
|
|
# session = manager.create_session("windows", host="192.168.56.10", port=4444)
|
2021-04-10 21:52:47 +02:00
|
|
|
# session = manager.create_session("windows", host="192.168.122.11", port=4444)
|
2021-05-12 06:17:25 +02:00
|
|
|
session = manager.create_session("linux", host="127.0.0.1", port=9999)
|
2021-02-15 05:32:05 +01:00
|
|
|
# session = manager.create_session("windows", host="0.0.0.0", port=4444)
|
2021-01-11 00:01:08 +01:00
|
|
|
|
2021-05-12 06:17:25 +02:00
|
|
|
for _ in range(30):
|
|
|
|
|
|
|
|
data = session.platform.run(
|
|
|
|
"cat /tmp/dummy",
|
|
|
|
capture_output=True,
|
|
|
|
text=True,
|
|
|
|
check=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
print(data.stdout.split("\n\n")[0])
|
|
|
|
print("===================================================")
|