├── Enumeration ├── linuxprivchecker.py ├── ping_sweep.py ├── recon_scan.py ├── reconscanner.py ├── smtp_verify.py ├── web-directory_brute-forcer.py └── webscanner.py ├── README.md ├── attacks ├── Tuoni_Web_Attacking_Program-master.zip ├── tcp_client_attack.py ├── tcp_server_attack.py └── udp_client_attack.py ├── enumeration ├── discover-hosts.sh └── nmap-ftp-scan.sh ├── http ├── http_request.py └── image-sucker.sh ├── kali-customizations ├── apt-get-issues-fix.txt ├── dotfiles │ └── vimrc └── python-virtualenv-setup.txt ├── passwords ├── caesar-cipher.py ├── caesar-cypher-bruteforce.py ├── get-chrome-passwords-v2.py ├── get-chrome-passwords.py ├── get_firefox_passes_v1.py └── get_firefox_passes_v2.py ├── privesc ├── LinEnum-master │ ├── CHANGELOG.md │ ├── CONTRIBUTORS.md │ ├── LinEnum.sh │ └── README.md ├── linuxprivchecker.py └── unix-privesc-check-1_x │ ├── CHANGELOG │ ├── COPYING.GPL │ ├── COPYING.UNIX-PRIVESC-CHECK │ └── unix-privesc-check └── shells ├── port_bind_shell.py └── pynet.py /Enumeration/linuxprivchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/linuxprivchecker.py -------------------------------------------------------------------------------- /Enumeration/ping_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/ping_sweep.py -------------------------------------------------------------------------------- /Enumeration/recon_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/recon_scan.py -------------------------------------------------------------------------------- /Enumeration/reconscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/reconscanner.py -------------------------------------------------------------------------------- /Enumeration/smtp_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/smtp_verify.py -------------------------------------------------------------------------------- /Enumeration/web-directory_brute-forcer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/web-directory_brute-forcer.py -------------------------------------------------------------------------------- /Enumeration/webscanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/Enumeration/webscanner.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/README.md -------------------------------------------------------------------------------- /attacks/Tuoni_Web_Attacking_Program-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/attacks/Tuoni_Web_Attacking_Program-master.zip -------------------------------------------------------------------------------- /attacks/tcp_client_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/attacks/tcp_client_attack.py -------------------------------------------------------------------------------- /attacks/tcp_server_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/attacks/tcp_server_attack.py -------------------------------------------------------------------------------- /attacks/udp_client_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/attacks/udp_client_attack.py -------------------------------------------------------------------------------- /enumeration/discover-hosts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/enumeration/discover-hosts.sh -------------------------------------------------------------------------------- /enumeration/nmap-ftp-scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/enumeration/nmap-ftp-scan.sh -------------------------------------------------------------------------------- /http/http_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/http/http_request.py -------------------------------------------------------------------------------- /http/image-sucker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/http/image-sucker.sh -------------------------------------------------------------------------------- /kali-customizations/apt-get-issues-fix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/kali-customizations/apt-get-issues-fix.txt -------------------------------------------------------------------------------- /kali-customizations/dotfiles/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/kali-customizations/dotfiles/vimrc -------------------------------------------------------------------------------- /kali-customizations/python-virtualenv-setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/kali-customizations/python-virtualenv-setup.txt -------------------------------------------------------------------------------- /passwords/caesar-cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/passwords/caesar-cipher.py -------------------------------------------------------------------------------- /passwords/caesar-cypher-bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/passwords/caesar-cypher-bruteforce.py -------------------------------------------------------------------------------- /passwords/get-chrome-passwords-v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/passwords/get-chrome-passwords-v2.py -------------------------------------------------------------------------------- /passwords/get-chrome-passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/passwords/get-chrome-passwords.py -------------------------------------------------------------------------------- /passwords/get_firefox_passes_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/passwords/get_firefox_passes_v1.py -------------------------------------------------------------------------------- /passwords/get_firefox_passes_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/passwords/get_firefox_passes_v2.py -------------------------------------------------------------------------------- /privesc/LinEnum-master/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/LinEnum-master/CHANGELOG.md -------------------------------------------------------------------------------- /privesc/LinEnum-master/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/LinEnum-master/CONTRIBUTORS.md -------------------------------------------------------------------------------- /privesc/LinEnum-master/LinEnum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/LinEnum-master/LinEnum.sh -------------------------------------------------------------------------------- /privesc/LinEnum-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/LinEnum-master/README.md -------------------------------------------------------------------------------- /privesc/linuxprivchecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/linuxprivchecker.py -------------------------------------------------------------------------------- /privesc/unix-privesc-check-1_x/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/unix-privesc-check-1_x/CHANGELOG -------------------------------------------------------------------------------- /privesc/unix-privesc-check-1_x/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/unix-privesc-check-1_x/COPYING.GPL -------------------------------------------------------------------------------- /privesc/unix-privesc-check-1_x/COPYING.UNIX-PRIVESC-CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/unix-privesc-check-1_x/COPYING.UNIX-PRIVESC-CHECK -------------------------------------------------------------------------------- /privesc/unix-privesc-check-1_x/unix-privesc-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/privesc/unix-privesc-check-1_x/unix-privesc-check -------------------------------------------------------------------------------- /shells/port_bind_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/shells/port_bind_shell.py -------------------------------------------------------------------------------- /shells/pynet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willc/OSCP-stuff/HEAD/shells/pynet.py --------------------------------------------------------------------------------