mirror of
https://github.com/calebstewart/pwncat.git
synced 2024-11-23 17:15:38 +01:00
36 lines
896 B
Python
Executable File
36 lines
896 B
Python
Executable File
#!./env/bin/python
|
|
import subprocess
|
|
|
|
import pwncat.manager
|
|
import pwncat.platform.windows
|
|
import time
|
|
import stat
|
|
import json
|
|
|
|
# Create a manager
|
|
manager = pwncat.manager.Manager("data/pwncatrc")
|
|
|
|
# Tell the manager to create verbose sessions that
|
|
# log all commands executed on the remote host
|
|
manager.config.set("verbose", True, glob=True)
|
|
|
|
# Establish a session
|
|
# session = manager.create_session("windows", host="192.168.56.10", port=4444)
|
|
# session = manager.create_session("windows", host="192.168.122.11", port=4444)
|
|
session = manager.create_session("linux", host="127.0.0.1", port=4444)
|
|
# session = manager.create_session("windows", host="0.0.0.0", port=4444)
|
|
|
|
proc = session.platform.sudo(
|
|
["env"],
|
|
env={"TEST": "hello world"},
|
|
password="Super Secret Squirrel",
|
|
text=True,
|
|
stdout=subprocess.PIPE,
|
|
)
|
|
print(proc.stdout.readline())
|
|
|
|
proc.wait()
|
|
|
|
|
|
manager.interactive()
|