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
ldap_shell — Shell interactiva para enumeración de Active Directory y abuso de ACL a través de LDAP/LDAPS. Soporta DCSync, RBCD, Shadow Credentials, cambios de contraseñas y manipulación de objetos de dominio para evaluaciones de seguridad. | Kitploit
Herramientas/GitHubGitHub/pshlyundin/ldap_shell
Escalada de PrivilegiosRecopilación de InformaciónPruebas de PenetraciónAutenticación
GitHubpshlyundin/ldap_shell

ldap_shell

Shell interactiva para enumeración de Active Directory y abuso de ACL a través de LDAP/LDAPS. Soporta DCSync, RBCD, Shadow Credentials, cambios de contraseñas y manipulación de objetos de dominio para evaluaciones de seguridad.

Ver Repositorio
404543hace 5 díasRevisado 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

LDAP shell

Este proyecto es un fork de ldap_shell de Impacket. Proporciona un shell interactivo para la enumeración y manipulación de Active Directory a través de los protocolos LDAP/LDAPS, siendo útil tanto para administradores de sistemas como para profesionales de seguridad.

Instalación

Estas herramientas solo son compatibles con Python 3.5+. Clone el repositorio desde GitHub, instale las dependencias y estará listo para usar. Instalación con pip:

root@kitploit:~
git clone https://github.com/PShlyundin/ldap_shell.git
cd ldap_shell
python3 -m pip install .

Instalación con uv:

root@kitploit:~
uv venv
uv pip install .

Uso

Opciones de conexión

root@kitploit:~
# Autenticación básica con contraseña
ldap_shell domain.local/user:contraseña

# Especificar dirección IP del controlador de dominio
ldap_shell domain.local/user:contraseña -dc-ip 192.168.1.2

# Autenticación usando hashes NTLM
ldap_shell domain.local/user -hashes aad3b435b51404eeaad3b435b51404ee:aad3b435b51404eeaad3b435b51404e1

# Autenticación Kerberos usando TGT
export KRB5CCNAME=/home/user/ticket.ccache
ldap_shell -k -no-pass domain.local/user

Funcionalidad

root@kitploit:~
Get Info
    dump [output_dir] - Dumps the domain
    get_group_users group - Get all users in a group
    get_laps_gmsa [target] - Retrieves LAPS and GMSA passwords associated with a given account (sAMAccountName) or for all. Supported LAPS 2.0
    get_maq [user] - Get Machine Account Quota and allowed users
    get_user_groups user - Retrieves all groups recursively this user is a member of
    search ldap_filter [attributes] - Search AD objects

Abuse ACL
    add_user_to_group user group - Add a user to a group
    change_password user [password] - Attempt to change a given user's password. Requires LDAPS.
    clear_rbcd target [grantee] - Clear RBCD permissions for a target computer
    dacl_modify target grantee action mask - Modify DACL entries for target object
    del_dcsync target - Remove DCSync rights from user/computer by deleting ACEs in domain DACL
    del_user_from_group user group - Delete a user from a group
    get_ntlm target - Get NTLM hash using Shadow Credentials attack (requires write access to msDS-KeyCredentialLink)
    set_dcsync target - If you have write access to the domain object, assign the DS-Replication right to the selected user
    set_dontreqpreauth target flag - Targeted AsRepRoast attack. Set or unset DONT_REQUIRE_PREAUTH flag for a target user.
    set_genericall target [grantee] - Set GenericAll permissions for a target object
    set_owner target [grantee] - Set new owner for target object
    set_rbcd target grantee - Configure RBCD permissions for a target computer
    set_spn target action [spn] - List, add or delete SPN for a target object

Misc
    add_computer computer_name [password] [target_dn] - Add a new computer account to the domain
    add_group group_name [target_dn] - Add new group to Active Directory
    add_user username [password] [target_dn] - Add a new user account to the domain
    del_computer computer_name - Delete a computer account from the domain
    del_group group_name - Delete group from Active Directory
    del_user username - Delete a user account from the domain
    disable_account username - Disable a user account in the domain
    enable_account username - Enable a user account in the domain
    start_tls  - Start TLS connection with LDAP server
    switch_user username [password] - Switch current user to another

Other
    help [command] - Show help
exit - exit from shell

Licencia

Apache License 2.0

Autores

  • Riocool
  • Mi canal de Telegram

Créditos

  • Impacket
  • saber-nyan
Descargar herramienta