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
targetedKerberoast — Script de Python para Kerberoasting con abuso de ACL dirigido: establece SPNs temporales en usuarios sin ellos, extrae hashes Kerberos y luego elimina el SPN. Compatible con autenticación NTLM, Kerberos y pass-the-hash. | Kitploit
Herramientas/GitHubGitHub/shutdownrepo/targetedkerberoast
Escalada de PrivilegiosAtaques de ContraseñasExplotaciónPruebas de Penetración
GitHubshutdownrepo/targetedkerberoast

targetedKerberoast

Script de Python para Kerberoasting con abuso de ACL dirigido: establece SPNs temporales en usuarios sin ellos, extrae hashes Kerberos y luego elimina el SPN. Compatible con autenticación NTLM, Kerberos y pass-the-hash.

Ver Repositorio

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
677852hace 1 añoRevisado por Kitploit

targetedKerberoast

targetedKerberoast es un script de Python que, al igual que muchos otros (por ejemplo, GetUserSPNs.py), puede imprimir hashes "kerberoast" para cuentas de usuario que tengan un SPN configurado. Esta herramienta ofrece la siguiente característica adicional: para cada usuario sin SPNs, intenta establecer uno (abuso de un permiso de escritura en el atributo servicePrincipalName), imprime el hash "kerberoast" y elimina el SPN temporal configurado para esa operación. Esto se denomina Kerberoasting dirigido. Esta herramienta se puede utilizar contra todos los usuarios de un dominio, o bien proporcionar una lista, o un único usuario desde la línea de comandos.

Más información sobre este ataque:

  • The Hacker Recipes - Kerberoast
  • The Hacker Recipes - Targeted Kerberoasting

Uso

Esta herramienta admite las siguientes autenticaciones:

  • (NTLM) Contraseña en texto claro
  • (NTLM) Pass-the-hash
  • (Kerberos) Contraseña en texto claro
  • (Kerberos) Pass-the-key / Overpass-the-hash
  • (Kerberos) Pass-the-cache (un tipo de Pass-the-ticket)

Entre otras cosas, targetedKerberoast admite verbosidad multinivel; solo hay que añadir -v, -vv, ... al comando :)

root@kitploit:~
usage: targetedKerberoast.py [-h] [-v] [-q] [-D TARGET_DOMAIN] [-U USERS_FILE] [--request-user username] [-o OUTPUT_FILE] [--use-ldaps] [--only-abuse] [--no-abuse] [--dc-ip ip address] [-d DOMAIN] [-u USER]
                             [-k] [--no-pass | -p PASSWORD | -H [LMHASH:]NTHASH | --aes-key hex key]

Queries target domain for SPNs that are running under a user account and operate targeted Kerberoasting

optional arguments:
  -h, --help            show this help message and exit
  -v, --verbose         verbosity level (-v for verbose, -vv for debug)
  -q, --quiet           show no information at all
  -D TARGET_DOMAIN, --target-domain TARGET_DOMAIN
                        Domain to query/request if different than the domain of the user. Allows for Kerberoasting across trusts.
  -U USERS_FILE, --users-file USERS_FILE
                        File with user per line to test
  --request-user username
                        Requests TGS for the SPN associated to the user specified (just the username, no domain needed)
  -o OUTPUT_FILE, --output-file OUTPUT_FILE
                        Output filename to write ciphers in JtR/hashcat format
  -f {hashcat,john}, --output-format {hashcat,john}
                        Output format (default is "hashcat", "john" prepends usernames)
  --use-ldaps           Use LDAPS instead of LDAP
  --only-abuse          Ignore accounts that already have an SPN and focus on targeted Kerberoasting
  --no-abuse            Don't attempt targeted Kerberoasting

authentication & connection:
  --dc-ip ip address    IP Address of the domain controller or KDC (Key Distribution Center) for Kerberos. If omitted it will use the domain part (FQDN) specified in the identity parameter
  -d DOMAIN, --domain DOMAIN
                        (FQDN) domain to authenticate to
  -u USER, --user USER  user to authenticate with

secrets:
  -k, --kerberos        Use Kerberos authentication. Grabs credentials from .ccache file (KRB5CCNAME) based on target parameters. If valid credentials cannot be found, it will use the ones specified in the
                        command line
  --no-pass             don't ask for password (useful for -k)
  -p PASSWORD, --password PASSWORD
                        password to authenticate with
  -H [LMHASH:]NTHASH, --hashes [LMHASH:]NTHASH
                        NT/LM hashes, format is LMhash:NThash
  --aes-key hex key     AES key to use for Kerberos Authentication (128 or 256 bits)

A continuación se muestra un ejemplo de lo que la herramienta puede hacer.

Créditos y referencias

Créditos a todo el equipo detrás de Impacket y sus colaboradores.

Descargar herramienta