Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 896 Bytes

cheatsheet.md

File metadata and controls

39 lines (32 loc) · 896 Bytes

HTTP Server

Version Command
Python2 python -m SimpleHTTPServer <port> -d <documentroot>
Python3 python3 -m http.server <port> -d <documentroot>
PHP php -S <ip>:<port> -t <documentroot>

Spawn a Shell

Step 1

Version Command
Python2 python -c "import pty; pty.spawn('/bin/bash')"
Python3 python3 -c "import pty; pty.spawn('/bin/bash')"

Step 2

Ctrl+z

Step 3

# stty raw -echo

Step 4

# fg

Step 5

# reset

Step 6

# export SHELL=bash
# export TERM=xterm-256color
# stty rows <num> columns <cols>