hacktricks/network-services-pentesting/pentesting-kerberos-88
2024-02-05 02:58:30 +00:00
..
harvesting-tickets-from-linux.md Translated ['forensics/basic-forensic-methodology/partitions-file-system 2024-02-05 02:58:30 +00:00
harvesting-tickets-from-windows.md Translated ['forensics/basic-forensic-methodology/partitions-file-system 2024-02-05 02:58:30 +00:00
README.md Translated ['network-services-pentesting/1521-1522-1529-pentesting-oracl 2024-01-05 23:40:55 +00:00

88tcp/udp - Kerberosのペネトレーションテスト

AWSハッキングをゼロからヒーローまで学ぶには htARTE (HackTricks AWS Red Team Expert)をご覧ください!

HackTricksをサポートする他の方法:

基本情報

まず、Kerberosは認証プロトコルであり、認可ではありません。つまり、秘密のパスワードを提供する各ユーザーを識別することができますが、このユーザーがどのリソースやサービスにアクセスできるかを検証するわけではありません。
KerberosはActive Directoryで使用されます。このプラットフォームでは、Kerberosは各ユーザーの権限に関する情報を提供しますが、ユーザーがそのリソースにアクセスできるかどうかを決定するのは各サービスの責任です。

デフォルトポート: 88/tcp/udp

PORT   STATE SERVICE
88/tcp open  kerberos-sec

Kerberosの悪用方法を学ぶには、 Active Directory に関する投稿を読むべきです。

その他

Shodan

  • port:88 kerberos

MS14-068

簡単に言うと、この脆弱性は攻撃者が既存の有効なドメインユーザーログオントークンKerberos Ticket Granting Ticket、TGT、チケットを変更し、ユーザーがドメイン管理者または他の機密グループのメンバーであるという偽の主張を追加することを可能にします。そして、ドメインコントローラーDCはその偽の主張を検証し、攻撃者にネットワーク上の任意のドメインADフォレスト内リソースへの不適切なアクセスを可能にします。

{% embed url="https://adsecurity.org/?p=541" %}

他のエクスプロイト: https://github.com/SecWiki/windows-kernel-exploits/tree/master/MS14-068/pykek

HackTricks 自動コマンド

Protocol_Name: Kerberos    #Protocol Abbreviation if there is one.
Port_Number:  88   #Comma separated if there is more than one.
Protocol_Description: AD Domain Authentication         #Protocol Abbreviation Spelled out

Entry_1:
Name: Notes
Description: Notes for Kerberos
Note: |
Firstly, Kerberos is an authentication protocol, not authorization. In other words, it allows to identify each user, who provides a secret password, however, it does not validates to which resources or services can this user access.
Kerberos is used in Active Directory. In this platform, Kerberos provides information about the privileges of each user, but it is the responsability of each service to determine if the user has access to its resources.

https://book.hacktricks.xyz/pentesting/pentesting-kerberos-88

Entry_2:
Name: Pre-Creds
Description: Brute Force to get Usernames
Command: nmap -p 88 --script=krb5-enum-users --script-args krb5-enum-users.realm="{Domain_Name}",userdb={Big_Userlist} {IP}

Entry_3:
Name: With Usernames
Description: Brute Force with Usernames and Passwords
Note: consider git clonehttps://github.com/ropnop/kerbrute.git ./kerbrute -h

Entry_4:
Name: With Creds
Description: Attempt to get a list of user service principal names
Command: GetUserSPNs.py -request -dc-ip {IP} active.htb/svc_tgs
AWSハッキングをゼロからヒーローまで学ぶ htARTE (HackTricks AWS Red Team Expert)

HackTricksをサポートする他の方法: