Skip to content

Instantly share code, notes, and snippets.

View mudphone's full-sized avatar

Kyle Oba mudphone

View GitHub Profile
@mudphone
mudphone / socks_sftp.py
Created April 17, 2018 08:35 — forked from ryanhiebert/socks_sftp.py
SFTP via SOCKS Proxy using Paramiko
import paramiko, socks
# PySocks recommends using no arguments,
# because it only supports the defaults anyway.
sock = socks.socksocket()
host, port = '127.0.0.1', 1234
# Set up your proxy information for this socket
sock.set_proxy(
@mudphone
mudphone / socks_sftp.py
Created April 17, 2018 08:35 — forked from ryanhiebert/socks_sftp.py
SFTP via SOCKS Proxy using Paramiko
import paramiko, socks
# PySocks recommends using no arguments,
# because it only supports the defaults anyway.
sock = socks.socksocket()
host, port = '127.0.0.1', 1234
# Set up your proxy information for this socket
sock.set_proxy(
@mudphone
mudphone / .Xresources
Last active August 29, 2015 14:06 — forked from vreon/.Xresources
! Molokai theme
*xterm*background: #101010
*xterm*foreground: #d0d0d0
*xterm*cursorColor: #d0d0d0
*xterm*color0: #101010
*xterm*color1: #960050
*xterm*color2: #66aa11
*xterm*color3: #c47f2c
*xterm*color4: #30309b
*xterm*color5: #7e40a5