Skip to content

Instantly share code, notes, and snippets.

@adliwahid
adliwahid / tmux-cheatsheet.markdown
Created March 28, 2016 23:46 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@adliwahid
adliwahid / demo_web_honeypot.py
Created March 23, 2016 23:38 — forked from glaslos/demo_web_honeypot.py
demo_web_honeypot
import SimpleHTTPServer
import SocketServer
paths = set()
class Handler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def do_GET(self):
# Detect remote file inclusion
if '=http' in self.path: