20 KiB
53 - DNSのペネトレーションテスト
AWSハッキングをゼロからヒーローまで学ぶには htARTE (HackTricks AWS Red Team Expert)をご覧ください!
HackTricksをサポートする他の方法:
- HackTricksにあなたの会社を広告したい場合やHackTricksをPDFでダウンロードしたい場合は、サブスクリプションプランをチェックしてください!
- 公式のPEASS & HackTricksグッズを入手する
- The PEASS Familyを発見し、独占的なNFTsのコレクションをチェックする
- 💬 Discordグループやテレグラムグループに参加するか、Twitter 🐦 @carlospolopmをフォローする。
- HackTricksのGitHubリポジトリやHackTricks CloudにPRを提出して、あなたのハッキングテクニックを共有する。
脆弱性評価とペネトレーションテストのための即時利用可能なセットアップ。どこからでもフルペネトレーションテストを実行でき、リコンからレポーティングまでの20以上のツールと機能を備えています。私たちはペネトレーションテスターを置き換えるものではありません - 私たちはカスタムツール、検出・エクスプロイトモジュールを開発して、彼らがより深く掘り下げ、シェルをポップし、楽しむための時間を取り戻すためのものです。
{% embed url="https://pentest-tools.com/" %}
基本情報
ドメインネームシステム(DNS)はインターネットの電話帳です。人々はnytimes.comやespn.comのようなドメイン名を通じてオンラインで情報にアクセスします。ウェブブラウザはインターネットプロトコル(IP)アドレスを介してやり取りします。DNSはドメイン名をIPアドレスに変換し、ブラウザがインターネットリソースを読み込むことができるようにします。
こちらから。
デフォルトポート: 53
PORT STATE SERVICE REASON
53/tcp open domain Microsoft DNS 6.1.7601 (1DB15D39) (Windows Server 2008 R2 SP1)
5353/udp open zeroconf udp-response
53/udp open domain Microsoft DNS 6.1.7601 (1DB15D39) (Windows Server 2008 R2 SP1)
異なるDNSサーバー
https://academy.hackthebox.com/module/112/section/1069からの情報
サーバータイプ | 説明 |
---|---|
DNSルートサーバー |
DNSのルートサーバーは、トップレベルドメイン(TLD )に責任を持っています。最終インスタンスとして、名前サーバーが応答しない場合にのみ要求されます。したがって、ルートサーバーは、ドメインとIPアドレスをリンクすることで、ユーザーとインターネット上のコンテンツとの間の中央インターフェースです。Internet Corporation for Assigned Names and Numbers (ICANN )がルート名前サーバーの作業を調整しています。世界中には13 のルートサーバーがあります。 |
権威あるネームサーバー |
権威あるネームサーバーは、特定のゾーンに対する権威を持っています。彼らは自分の責任範囲からのクエリにのみ答え、その情報は拘束力があります。権威あるネームサーバーがクライアントのクエリに答えられない場合、その時点でルートネームサーバーが引き継ぎます。 |
非権威あるネームサーバー |
非権威あるネームサーバーは、特定のDNSゾーンに責任を持っていません。代わりに、彼らは再帰的または反復的なDNSクエリを使用して、特定のDNSゾーンに関する情報を自ら収集します。 |
キャッシングDNSサーバー |
キャッシングDNSサーバーは、指定された期間にわたって他のネームサーバーからの情報をキャッシュします。この保存の期間は、権威あるネームサーバーが決定します。 |
フォワーディングサーバー |
フォワーディングサーバーは、一つの機能のみを実行します:彼らはDNSクエリを別のDNSサーバーに転送します。 |
リゾルバー |
リゾルバーは権威あるDNSサーバーではありませんが、コンピューターやルーター内でローカルに名前解決を実行します。 |
列挙
バナーグラビング
DNSには"バナー"をグラブするものはありません。最も近い同等物は、ほとんどのBINDネームサーバーで機能するversion.bind. CHAOS TXT
のマジッククエリです。
このクエリはdig
を使用して実行できます:
dig version.bind CHAOS TXT @DNS
もしそれがうまくいかない場合は、フィンガープリント技術を使用してリモートサーバーのバージョンを特定することができます。そのためのツールとして[`fpdns`](https://github.com/kirei/fpdns)がありますが、他にも選択肢はあります。
バナーは**nmap**スクリプトでも取得できます:
--script dns-nsid
ANY レコード
ANY レコードは、DNSサーバーに対して、開示する意思があるすべての利用可能なエントリーを返すように要求します。
dig any victim.com @<DNS_IP>
ゾーン転送
この手順は Asynchronous Full Transfer Zone
(AXFR
) と略されます。
dig axfr @<DNS_IP> #Try zone transfer without domain
dig axfr @<DNS_IP> <DOMAIN> #Try zone transfer guessing the domain
fierce --domain <DOMAIN> --dns-servers <DNS_IP> #Will try toperform a zone transfer against every authoritative name server and if this doesn'twork, will launch a dictionary attack
詳細情報
dig ANY @<DNS_IP> <DOMAIN> #Any information
dig A @<DNS_IP> <DOMAIN> #Regular DNS request
dig AAAA @<DNS_IP> <DOMAIN> #IPv6 DNS request
dig TXT @<DNS_IP> <DOMAIN> #Information
dig MX @<DNS_IP> <DOMAIN> #Emails related
dig NS @<DNS_IP> <DOMAIN> #DNS that resolves that name
dig -x 192.168.0.2 @<DNS_IP> #Reverse lookup
dig -x 2a00:1450:400c:c06::93 @<DNS_IP> #reverse IPv6 lookup
#Use [-p PORT] or -6 (to use ivp6 address of dns)
自動化
for sub in $(cat <WORDLIST>);do dig $sub.<DOMAIN> @<DNS_IP> | grep -v ';\|SOA' | sed -r '/^\s*$/d' | grep $sub | tee -a subdomains.txt;done
dnsenum --dnsserver <DNS_IP> --enum -p 0 -s 0 -o subdomains.txt -f <WORDLIST> <DOMAIN>
nslookupの使用
nslookup
> SERVER <IP_DNS> #Select dns server
> 127.0.0.1 #Reverse lookup of 127.0.0.1, maybe...
> <IP_MACHINE> #Reverse lookup of a machine, maybe...
便利なmetasploitモジュール
auxiliary/gather/enum_dns #Perform enumeration actions
便利なnmapスクリプト
#Perform enumeration actions
nmap -n --script "(default and *dns*) or fcrdns or dns-srv-enum or dns-random-txid or dns-random-srcport" <IP>
DNS - リバースBF
dnsrecon -r 127.0.0.0/24 -n <IP_DNS> #DNS reverse of all of the addresses
dnsrecon -r 127.0.1.0/24 -n <IP_DNS> #DNS reverse of all of the addresses
dnsrecon -r <IP_DNS>/24 -n <IP_DNS> #DNS reverse of all of the addresses
dnsrecon -d active.htb -a -n <IP_DNS> #Zone transfer
{% hint style="info" %} 内部IPアドレスに解決するサブドメインを見つけた場合、そのIP範囲についてドメインのNSに対してリバースDNS BFを実行することを試みるべきです。 {% endhint %}
これを行うための別のツール: https://github.com/amine7536/reverse-scan
リバースIP範囲について問い合わせることができます https://bgp.he.net/net/205.166.76.0/24#_dns(このツールはBGPにも役立ちます)。
DNS - サブドメインBF
dnsenum --dnsserver <IP_DNS> --enum -p 0 -s 0 -o subdomains.txt -f subdomains-1000.txt <DOMAIN>
dnsrecon -D subdomains-1000.txt -d <DOMAIN> -n <IP_DNS>
dnscan -d <domain> -r -w subdomains-1000.txt #Bruteforce subdomains in recursive way, https://github.com/rbsec/dnscan
アクティブディレクトリサーバー
dig -t _gc._tcp.lab.domain.com
dig -t _ldap._tcp.lab.domain.com
dig -t _kerberos._tcp.lab.domain.com
dig -t _kpasswd._tcp.lab.domain.com
nslookup -type=srv _kerberos._tcp.<CLIENT_DOMAIN>
nslookup -type=srv _kerberos._tcp.domain.com
nmap --script dns-srv-enum --script-args "dns-srv-enum.domain='domain.com'"
DNSSec
#Query paypal subdomains to ns3.isc-sns.info
nmap -sSU -p53 --script dns-nsec-enum --script-args dns-nsec-enum.domains=paypal.com ns3.isc-sns.info
IPv6
"AAAA"リクエストを使用したブルートフォースでサブドメインのIPv6を収集します。
dnsdict6 -s -t <domain>
IPv6アドレスを使用したブルートフォースリバースDNS
dnsrevenum6 pri.authdns.ripe.net 2001:67c:2e8::/48 #Will use the dns pri.authdns.ripe.net
DNS 再帰 DDoS
DNS 再帰が有効になっている場合、攻撃者はUDPパケットの発信元を偽装して、DNSに対象のサーバーへの応答を送信させることができます。攻撃者は、通常より大きな応答を返すことが多い ANY や DNSSEC レコードタイプを悪用することができます。
DNSが再帰をサポートしているかどうかを確認する方法は、ドメイン名を問い合わせて、応答にフラグ "ra" (再帰可能) が含まれているかを確認することです:
dig google.com A @<IP>
利用不可:
利用可能:
即時利用可能な脆弱性評価 & ペネトレーションテストのセットアップ。どこからでもフルペネトレーションテストを実行できます。リコンからレポーティングまで、20以上のツールと機能を備えています。私たちはペネトレーターを置き換えるものではありません - 私たちはカスタムツール、検出 & エクスプロイトモジュールを開発して、彼らがより深く掘り下げ、シェルをポップし、楽しむための時間を取り戻すためにあります。
{% embed url="https://pentest-tools.com/" %}
存在しないアカウントへのメール
書籍より: Network Security Assessment (第3版)
ターゲットドメインの存在しないアドレスに単純にメールメッセージを送信することで、非配信通知 (NDN) を通じて有用な内部ネットワーク情報がしばしば明らかになります。
Generating server: noa.nintendo.com
blah@nintendo.com
#550 5.1.1 RESOLVER.ADR.RecipNotFound; not found ##
Original message headers:
Received: from ONERDEDGE02.one.nintendo.com (10.13.20.35) by
onerdexch08.one.nintendo.com (10.13.30.39) with Microsoft SMTP Server (TLS)
id 14.3.174.1; Sat, 26 Apr 2014 16:52:22 -0700
Received: from barracuda.noa.nintendo.com (205.166.76.35) by
ONERDEDGE02.one.nintendo.com (10.13.20.35) with Microsoft SMTP Server (TLS)
id 14.3.174.1; Sat, 26 Apr 2014 16:51:22 -0700
X-ASG-Debug-ID: 1398556333-0614671716199b0d0001-zOQ9WJ
Received: from gateway05.websitewelcome.com (gateway05.websitewelcome.com [69.93.154.37]) by
barracuda.noa.nintendo.com with ESMTP id xVNPkwaqGgdyH5Ag for <blah@nintendo.com>; Sat,
26 Apr 2014 16:52:13 -0700 (PDT)
X-Barracuda-Envelope-From: chris@example.org
X-Barracuda-Apparent-Source-IP: 69.93.154.37
以下のデータは役立つ情報です:
- 内部ホスト名、IPアドレス、およびサブドメインのレイアウト
- メールサーバーはMicrosoft Exchange Server 2010 SP3を実行しています
- Barracuda Networksのデバイスがコンテンツフィルタリングに使用されています
設定ファイル
host.conf
/etc/resolv.conf
/etc/bind/named.conf
/etc/bind/named.conf.local
/etc/bind/named.conf.options
/etc/bind/named.conf.log
/etc/bind/*
Bindサーバーを設定する際の危険な設定:
オプション | 説明 |
---|---|
allow-query |
DNSサーバーにリクエストを送信できるホストを定義します。 |
allow-recursion |
DNSサーバーに再帰的なリクエストを送信できるホストを定義します。 |
allow-transfer |
DNSサーバーからゾーン転送を受け取ることができるホストを定義します。 |
zone-statistics |
ゾーンの統計データを収集します。 |
HackTricks 自動コマンド
Protocol_Name: DNS #Protocol Abbreviation if there is one.
Port_Number: 53 #Comma separated if there is more than one.
Protocol_Description: Domain Name Service #Protocol Abbreviation Spelled out
Entry_1:
Name: Notes
Description: Notes for DNS
Note: |
#These are the commands I run every time I see an open DNS port
dnsrecon -r 127.0.0.0/24 -n {IP} -d {Domain_Name}
dnsrecon -r 127.0.1.0/24 -n {IP} -d {Domain_Name}
dnsrecon -r {Network}{CIDR} -n {IP} -d {Domain_Name}
dig axfr @{IP}
dig axfr {Domain_Name} @{IP}
nslookup
SERVER {IP}
127.0.0.1
{IP}
Domain_Name
exit
https://book.hacktricks.xyz/pentesting/pentesting-dns
Entry_2:
Name: Banner Grab
Description: Grab DNS Banner
Command: dig version.bind CHAOS TXT @DNS
Entry_3:
Name: Nmap Vuln Scan
Description: Scan for Vulnerabilities with Nmap
Command: nmap -n --script "(default and *dns*) or fcrdns or dns-srv-enum or dns-random-txid or dns-random-srcport" {IP}
Entry_4:
Name: Zone Transfer
Description: Three attempts at forcing a zone transfer
Command: dig axfr @{IP} && dix axfr @{IP} {Domain_Name} && fierce --dns-servers {IP} --domain {Domain_Name}
Entry_5:
Name: Active Directory
Description: Eunuerate a DC via DNS
Command: dig -t _gc._{Domain_Name} && dig -t _ldap._{Domain_Name} && dig -t _kerberos._{Domain_Name} && dig -t _kpasswd._{Domain_Name} && nmap --script dns-srv-enum --script-args "dns-srv-enum.domain={Domain_Name}"
Entry_6:
Name: consolesless mfs enumeration
Description: DNS enumeration without the need to run msfconsole
Note: sourced from https://github.com/carlospolop/legion
Command: msfconsole -q -x 'use auxiliary/scanner/dns/dns_amp; set RHOSTS {IP}; set RPORT 53; run; exit' && msfconsole -q -x 'use auxiliary/gather/enum_dns; set RHOSTS {IP}; set RPORT 53; run; exit'
<figure><img src="/.gitbook/assets/image (2).png" alt=""><figcaption></figcaption></figure>
**脆弱性評価とペネトレーションテストのための即時利用可能なセットアップ**。どこからでもフルペンテストを実行し、リコンからレポーティングまでの20以上のツールと機能を使用します。私たちはペネトレーターを置き換えるものではありません - 私たちはカスタムツール、検出およびエクスプロイトモジュールを開発して、彼らがより深く掘り下げ、シェルをポップし、楽しむための時間を取り戻すために彼らを支援します。
{% embed url="https://pentest-tools.com/" %}
<details>
<summary><strong>htARTE (HackTricks AWS Red Team Expert)でゼロからヒーローまでAWSハッキングを学ぶ</strong></summary>
HackTricksをサポートする他の方法:
* **HackTricksにあなたの会社を広告したい場合**、または**HackTricksをPDFでダウンロードしたい場合**は、[**サブスクリプションプラン**](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**公式のPEASS & HackTricksグッズ**](https://peass.creator-spring.com)を入手してください。
* [**The PEASS Family**](https://opensea.io/collection/the-peass-family)を発見し、私たちの独占的な[**NFTコレクション**](https://opensea.io/collection/the-peass-family)をチェックしてください。
* 💬 [**Discordグループ**](https://discord.gg/hRep4RUj7f)や[**テレグラムグループ**](https://t.me/peass)に**参加するか**、**Twitter** 🐦 [**@carlospolopm**](https://twitter.com/carlospolopm)を**フォローしてください**。
* [**HackTricks**](https://github.com/carlospolop/hacktricks)と[**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud)のgithubリポジトリにPRを提出して、あなたのハッキングのコツを**共有してください**。
</details>