1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-02 09:15:24 +02:00
tldr/pages.nl/common/getuserspns.py.md
Sebastiaan Speck 40b4e64363
impacket*: add missing Dutch translations and improve English pages (#16607)
* impacket*: add missing Dutch translations and improve English pages

* Fix tldr-bot issues

* Apply suggestions from code review

Co-authored-by: Leon <leonvsc@users.noreply.github.com>

---------

Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
Co-authored-by: Leon <leonvsc@users.noreply.github.com>
2025-05-28 21:41:12 +02:00

1 KiB

GetUserSPNs.py

Haal Service Principal Names (SPN's) op die gekoppeld zijn aan Active Directory gebruikersaccounts. Onderdeel van de Impacket-suite. Meer informatie: https://github.com/fortra/impacket.

  • Som gebruikersaccounts met een SPN op en vraag hun Kerberos TGS tickets op:

GetUserSPNs.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -dc-ip {{domain_controller_ip}}

  • Gebruik pass-the-hash authenticatie:

GetUserSPNs.py {{domein}}/{{gebruikersnaam}} -hashes {{LM_Hash}}:{{NT_Hash}} -dc-ip {{domain_controller_ip}}

  • Sla de uitvoer op in een bestand:

GetUserSPNs.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -dc-ip {{domain_controller_ip}} -outputfile {{pad/naar/uitvoerbestand}}

  • Vraag alleen TGS tickets op:

GetUserSPNs.py {{domein}}/{{gebruikersnaam}}:{{wachtwoord}} -dc-ip {{domain_controller_ip}} -request

  • Vraag alleen TGS tickets aan met pass-the-hash authenticatie:

GetUserSPNs.py {{domein}}/{{gebruikersnaam}} -dc-ip {{domain_controller_ip}} -hashes {{LM_Hash}}:{{NT_Hash}} -request