2024-02-06 04:13:43 +00:00
# 53 - DNSのペンテスト
2022-04-28 16:01:33 +00:00
< details >
2024-03-17 16:50:32 +00:00
< summary > < strong > ゼロからヒーローまでAWSハッキングを学ぶ< / strong > < a href = "https://training.hacktricks.xyz/courses/arte" > < strong > htARTE( HackTricks AWS Red Team Expert) < / strong > < / a > < strong > ! < / strong > < / summary >
2022-04-28 16:01:33 +00:00
2024-02-06 04:13:43 +00:00
HackTricksをサポートする他の方法:
2024-01-11 13:25:04 +00:00
2024-05-05 23:08:22 +00:00
- **HackTricksで企業を宣伝**したい場合や**HackTricksをPDFでダウンロード**したい場合は、[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
- [**公式PEASS& HackTricksグッズ** ](https://peass.creator-spring.com )を入手する
2024-02-06 04:13:43 +00:00
- [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )を発見し、独占的な[**NFTs**](https://opensea.io/collection/the-peass-family)のコレクションを見つける
2024-05-05 23:08:22 +00:00
- **💬 [Discordグループ ](https://discord.gg/hRep4RUj7f )**に参加するか、[telegramグループ](https://t.me/peass)に参加するか、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks\_live )をフォローする
- **ハッキングトリックを共有するためにPRを** [**HackTricks** ](https://github.com/carlospolop/hacktricks ) **と** [**HackTricks Cloud** ](https://github.com/carlospolop/hacktricks-cloud ) **のGitHubリポジトリに提出する**
2022-04-28 16:01:33 +00:00
< / details >
2024-05-05 23:08:22 +00:00
< figure > < img src = "../.gitbook/assets/image (14).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-04-30 21:54:03 +00:00
2024-05-05 23:08:22 +00:00
**脆弱性評価とペネトレーションテストのための即座に利用可能なセットアップ**。20以上のツールと機能を備えた完全なペンテストをどこからでも実行し、レコンからレポート作成まで対応します。私たちはペンテスターを置き換えるのではなく、カスタムツール、検出、およびエクスプロイトモジュールを開発して、彼らにより深く掘り下げる時間を与え、シェルをポップして楽しむことができます。
2023-04-30 21:54:03 +00:00
2024-01-11 13:25:04 +00:00
{% embed url="https://pentest-tools.com/" %}
2023-04-30 21:54:03 +00:00
2023-07-07 23:42:27 +00:00
## **基本情報**
2020-07-15 15:43:14 +00:00
2024-03-29 21:29:39 +00:00
**ドメインネームシステム( DNS) **はインターネットのディレクトリとして機能し、ユーザーがgoogle.comやfacebook.comなどの**覚えやすいドメイン名**を介してウェブサイトにアクセスできるようにします。ドメイン名をIPアドレスに変換することで、DNSはウェブブラウザがインターネットリソースを迅速に読み込めるようにし、オンライン世界をナビゲートする方法を簡素化します。
2020-07-15 15:43:14 +00:00
2023-07-07 23:42:27 +00:00
**デフォルトポート:** 53
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
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)
```
2023-07-07 23:42:27 +00:00
### 異なるDNSサーバー
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
* **DNSルートサーバー**: これらはDNS階層のトップにあり、トップレベルドメインを管理し、下位サーバーからの応答がない場合にのみ介入します。インターネット割り当て名前および番号機構( **ICANN**) が13のグローバルカウントを管理しています。
2024-03-29 21:29:39 +00:00
* **権威あるネームサーバー**: これらのサーバーは、指定されたゾーン内のクエリについて最終的な判断を下し、明確な回答を提供します。回答を提供できない場合、クエリはルートサーバーにエスカレートされます。
2024-05-05 23:08:22 +00:00
* **非権威あるネームサーバー**: DNSゾーンの所有権を持たないこれらのサーバーは、他のサーバーへのクエリを通じてドメイン情報を収集します。
* **キャッシュDNSサーバー**: このタイプのサーバーは、将来のリクエストの応答時間を高速化するために、以前のクエリ回答を一定時間記憶し、キャッシュの期間は権威あるサーバーによって決定されます。
2024-03-17 16:50:32 +00:00
* **フォワーディングサーバー**: 単純な役割を果たすフォワーディングサーバーは、単にクエリを別のサーバーに中継します。
* **リゾルバ**: コンピュータやルーターに統合されているリゾルバは、ローカルで名前解決を実行し、権威あるとは見なされません。
2022-10-02 19:15:35 +00:00
2023-07-07 23:42:27 +00:00
## 列挙
2022-10-02 19:15:35 +00:00
2024-05-05 23:08:22 +00:00
### **バナー取得**
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
DNSにはバナーがありませんが、`version.bind. CHAOS TXT`のマジッククエリを取得できます。これはほとんどのBINDネームサーバーで機能します。\
2024-04-01 16:01:05 +00:00
`dig` を使用してこのクエリを実行できます:
2020-07-15 15:43:14 +00:00
```bash
dig version.bind CHAOS TXT @DNS
```
2024-02-08 04:49:53 +00:00
さらに、ツール[`fpdns`](https://github.com/kirei/fpdns)を使用してサーバーのフィンガープリントを取得することもできます。
2020-07-15 15:43:14 +00:00
2024-04-01 16:01:05 +00:00
また、**nmap**スクリプトを使用してバナーを取得することも可能です:
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
--script dns-nsid
```
2024-02-06 04:13:43 +00:00
### **任意のレコード**
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
レコード**ANY**は、DNSサーバーにすべての利用可能な**エントリ**を**開示することを許可する**ように要求します。
2022-10-02 19:15:35 +00:00
```bash
dig any victim.com @< DNS_IP >
```
2023-07-07 23:42:27 +00:00
### **ゾーン転送**
2022-10-02 19:15:35 +00:00
2024-01-11 13:25:04 +00:00
この手順は `Asynchronous Full Transfer Zone` (`AXFR`) と略されます。
2020-07-15 15:43:14 +00:00
```bash
dig axfr @< DNS_IP > #Try zone transfer without domain
dig axfr @< DNS_IP > < DOMAIN > #Try zone transfer guessing the domain
2021-06-20 12:09:34 +00:00
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
2020-07-15 15:43:14 +00:00
```
2024-02-06 04:13:43 +00:00
### より詳しい情報
2020-07-15 15:43:14 +00:00
```bash
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)
```
2023-08-27 20:14:16 +00:00
#### 自動化
2020-07-15 15:43:14 +00:00
```bash
2023-08-27 20:14:16 +00:00
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
2020-07-15 15:43:14 +00:00
2023-08-27 20:14:16 +00:00
dnsenum --dnsserver < DNS_IP > --enum -p 0 -s 0 -o subdomains.txt -f < WORDLIST > < DOMAIN >
2020-07-15 15:43:14 +00:00
```
2023-08-27 20:14:16 +00:00
#### nslookupの使用
```bash
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...
```
2024-02-06 04:13:43 +00:00
### 便利なMetasploitモジュール
2023-08-27 20:14:16 +00:00
```bash
auxiliary/gather/enum_dns #Perform enumeration actions
```
### 便利なnmapスクリプト
2020-07-15 15:43:14 +00:00
```bash
#Perform enumeration actions
nmap -n --script "(default and *dns* ) or fcrdns or dns-srv-enum or dns-random-txid or dns-random-srcport" < IP >
```
2024-05-05 23:08:22 +00:00
### DNS - リバースBF
2020-07-15 15:43:14 +00:00
```bash
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
```
2021-04-02 19:21:43 +00:00
{% hint style="info" %}
2024-05-05 23:08:22 +00:00
内部IPアドレスに解決されるサブドメインを見つけることができる場合、そのIP範囲を持つドメインのNSに対して逆DNS BFを実行してみるべきです。
2021-04-02 19:21:43 +00:00
{% endhint %}
2024-05-05 23:08:22 +00:00
これを行うための別のツール: [https://github.com/amine7536/reverse-scan ](https://github.com/amine7536/reverse-scan )
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
逆IP範囲をクエリすることができます: [https://bgp.he.net/net/205.166.76.0/24#\_dns ](https://bgp.he.net/net/205.166.76.0/24#\_dns )( このツールはBGPでも役立ちます) 。
2020-07-15 15:43:14 +00:00
2023-07-07 23:42:27 +00:00
### DNS - サブドメインBF
2020-07-15 15:43:14 +00:00
```bash
2022-10-02 19:15:35 +00:00
dnsenum --dnsserver < IP_DNS > --enum -p 0 -s 0 -o subdomains.txt -f subdomains-1000.txt < DOMAIN >
2020-07-15 15:43:14 +00:00
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
```
2024-02-06 04:13:43 +00:00
### Active Directory サーバー
2023-11-05 15:52:38 +00:00
```bash
2020-07-15 15:43:14 +00:00
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
2023-11-05 15:52:38 +00:00
nslookup -type=srv _kerberos._tcp.< CLIENT_DOMAIN >
nslookup -type=srv _kerberos._tcp.domain.com
2020-07-15 15:43:14 +00:00
nmap --script dns-srv-enum --script-args "dns-srv-enum.domain='domain.com'"
```
2024-01-11 13:25:04 +00:00
### DNSSec
2020-07-15 15:43:14 +00:00
```bash
2023-07-07 23:42:27 +00:00
#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
2020-07-15 15:43:14 +00:00
```
2022-10-02 19:15:35 +00:00
### IPv6
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
サブドメインのIPv6を収集するために "AAAA" リクエストを使用してブルートフォース攻撃を行います。
2020-07-15 15:43:14 +00:00
```bash
dnsdict6 -s -t < domain >
```
2024-05-05 23:08:22 +00:00
IPv6アドレスを使用して逆DNSをブルートフォース攻撃する
2020-07-15 15:43:14 +00:00
```bash
dnsrevenum6 pri.authdns.ripe.net 2001:67c:2e8::/48 #Will use the dns pri.authdns.ripe.net
```
2024-05-05 23:08:22 +00:00
### DNS再帰DDoS
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
DNS再帰が有効になっている場合、攻撃者はUDPパケットで**オリジンを偽装**し、DNSに**レスポンスを被害者サーバーに送信**させることができます。攻撃者は、**ANY**または**DNSSEC**レコードタイプを悪用することができます。なぜなら、これらはより大きなレスポンスを持つことが多いからです。\
DNSが再帰をサポートしているかどうかを**確認**する方法は、ドメイン名をクエリし、レスポンスに**フラグ "ra"**( _再帰可能_) が含まれているかどうかを**確認**することです:
2020-07-15 15:43:14 +00:00
```bash
dig google.com A @< IP >
```
2024-01-11 13:25:04 +00:00
**利用不可**:
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
![](< .. / . gitbook / assets / image ( 123 ) . png > )
2020-07-15 15:43:14 +00:00
2023-07-07 23:42:27 +00:00
**利用可能**:
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
![](< .. / . gitbook / assets / image ( 146 ) . png > )
2020-07-15 15:43:14 +00:00
2024-05-05 23:08:22 +00:00
< figure > < img src = "../.gitbook/assets/image (14).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-04-30 21:54:03 +00:00
2024-05-05 23:08:22 +00:00
**脆弱性評価およびペネトレーションテストのための即座に利用可能なセットアップ**。レコンからレポート作成までの20以上のツールと機能を備えた完全なペンテストをどこからでも実行します。私たちはペンテスターを置き換えるのではなく、彼らに時間を戻してより深く掘り下げたり、シェルをポップしたり、楽しんだりするためのカスタムツール、検出、およびエクスプロイトモジュールを開発しています。
2023-04-30 21:54:03 +00:00
2024-01-11 13:25:04 +00:00
{% embed url="https://pentest-tools.com/" %}
2023-04-30 21:54:03 +00:00
2023-07-07 23:42:27 +00:00
### 存在しないアカウントへのメール
2020-07-15 15:43:14 +00:00
2024-02-06 04:13:43 +00:00
ターゲットドメイン内の無効なアドレスに送信されたメールによってトリガーされた配信不能通知( NDN) の調査を通じて、貴重な内部ネットワークの詳細がしばしば開示されます。
2020-07-15 15:43:14 +00:00
2024-03-29 21:29:39 +00:00
提供される配信不能レポートには、次の情報が含まれます:
2024-02-06 04:13:43 +00:00
- 生成サーバーは `server.example.com` として識別されました。
2024-05-05 23:08:22 +00:00
- `user@example.com` に対するエラーコード `#550 5.1.1 RESOLVER.ADR.RecipNotFound; not found` が返されました。
- 元のメッセージヘッダーには内部IPアドレスとホスト名が開示されました。
2024-02-06 04:13:43 +00:00
```markdown
The original message headers were modified for anonymity and now present randomized data:
Generating server: server.example.com
2020-07-15 15:43:14 +00:00
2024-02-06 04:13:43 +00:00
user@example.com
2020-07-15 15:43:14 +00:00
#550 5.1.1 RESOLVER.ADR.RecipNotFound; not found ##
Original message headers:
2024-02-06 04:13:43 +00:00
Received: from MAILSERVER01.domain.example.com (192.168.1.1) by
mailserver02.domain.example.com (192.168.2.2) with Microsoft SMTP Server (TLS)
id 14.3.174.1; Mon, 25 May 2015 14:52:22 -0700
Received: from filter.example.com (203.0.113.1) by
MAILSERVER01.domain.example.com (192.168.1.1) with Microsoft SMTP Server (TLS)
id 14.3.174.1; Mon, 25 May 2015 14:51:22 -0700
X-ASG-Debug-ID: 1432576343-0614671716190e0d0001-zOQ9WJ
Received: from gateway.domainhost.com (gateway.domainhost.com [198.51.100.37]) by
filter.example.com with ESMTP id xVNPkwaqGgdyH5Ag for user@example.com; Mon,
25 May 2015 14:52:13 -0700 (PDT)
X-Envelope-From: sender@anotherdomain.org
X-Apparent-Source-IP: 198.51.100.37
2020-07-15 15:43:14 +00:00
```
2023-07-07 23:42:27 +00:00
## 設定ファイル
2021-10-18 11:21:18 +00:00
```
2020-07-15 15:43:14 +00:00
host.conf
2022-10-02 19:15:35 +00:00
/etc/resolv.conf
/etc/bind/named.conf
/etc/bind/named.conf.local
/etc/bind/named.conf.options
/etc/bind/named.conf.log
/etc/bind/*
2020-07-15 15:43:14 +00:00
```
2024-05-05 23:08:22 +00:00
危険な設定を行う際のBindサーバーの構成:
2020-07-15 15:43:14 +00:00
2023-07-07 23:42:27 +00:00
| **オプション** | **説明** |
2024-02-06 04:13:43 +00:00
| ----------------- | ------------------------------------------------------------------------------ |
| `allow-query` | DNSサーバーにリクエストを送信することが許可されているホストを定義します。 |
| `allow-recursion` | DNSサーバーに再帰的なリクエストを送信することが許可されているホストを定義します。 |
| `allow-transfer` | DNSサーバーからゾーン転送を受信することが許可されているホストを定義します。 |
2023-07-07 23:42:27 +00:00
| `zone-statistics` | ゾーンの統計データを収集します。 |
2021-08-12 12:57:59 +00:00
2024-02-06 04:13:43 +00:00
## 参考文献
2024-03-17 16:50:32 +00:00
2024-02-06 04:13:43 +00:00
* [https://www.myrasecurity.com/en/knowledge-hub/dns/ ](https://www.myrasecurity.com/en/knowledge-hub/dns/ )
* 書籍: **Network Security Assessment 3rd edition**
2024-05-05 23:08:22 +00:00
## HackTricks Automatic Commands
2021-10-18 11:21:18 +00:00
```
2021-08-12 12:57:59 +00:00
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
2021-08-15 17:42:53 +00:00
Entry_1:
2023-07-07 23:42:27 +00:00
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
2021-08-15 17:42:53 +00:00
Entry_2:
2023-07-07 23:42:27 +00:00
Name: Banner Grab
Description: Grab DNS Banner
Command: dig version.bind CHAOS TXT @DNS
2021-08-15 17:42:53 +00:00
Entry_3:
2023-07-07 23:42:27 +00:00
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}
2021-08-15 17:42:53 +00:00
Entry_4:
2023-07-07 23:42:27 +00:00
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}
2021-08-15 17:42:53 +00:00
Entry_5:
2023-07-07 23:42:27 +00:00
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}"
2021-10-27 16:45:10 +00:00
Entry_6:
2023-07-07 23:42:27 +00:00
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'
2021-08-12 12:57:59 +00:00
```
2024-05-05 23:08:22 +00:00
< figure > < img src = "../.gitbook/assets/image (14).png" alt = "" > < figcaption > < / figcaption > < / figure >
2023-04-30 21:54:03 +00:00
2024-05-05 23:08:22 +00:00
**脆弱性評価およびペネトレーションテストのための即座に利用可能なセットアップ**。レコンからレポート作成まで、20以上のツールと機能を使用してどこからでもフルペンテストを実行します。私たちはペンテスターを置き換えるのではなく、彼らに時間を戻してさらに深く掘り下げたり、シェルをポップしたり、楽しんだりするためにカスタムツール、検出およびエクスプロイトモジュールを開発します。
2023-04-30 21:54:03 +00:00
2024-01-11 13:25:04 +00:00
{% embed url="https://pentest-tools.com/" %}
2023-04-30 21:54:03 +00:00
2022-04-28 16:01:33 +00:00
< details >
2024-05-05 23:08:22 +00:00
< summary > < strong > htARTE( HackTricks AWS Red Team Expert) でAWSハッキングをゼロからヒーローまで学ぶ< / strong > ! < / summary >
2022-04-28 16:01:33 +00:00
2024-04-01 16:01:05 +00:00
HackTricksをサポートする他の方法:
2024-01-11 13:25:04 +00:00
2024-04-01 16:01:05 +00:00
* **HackTricksで企業を宣伝したり、HackTricksをPDFでダウンロードしたい場合は** [**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop ) **をチェックしてください!**
2024-05-05 23:08:22 +00:00
* [**公式PEASS& HackTricksスウォッグ** ](https://peass.creator-spring.com )を入手する
2024-04-01 16:01:05 +00:00
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )、当社の独占的な[**NFTs**](https://opensea.io/collection/the-peass-family)コレクションを発見する
2024-05-05 23:08:22 +00:00
* **💬 [**Discordグループ** ](https://discord.gg/hRep4RUj7f )または[**telegramグループ**](https://t.me/peass)に参加するか、**Twitter** 🐦 [**@carlospolopm** ](https://twitter.com/hacktricks\_live ) **で**私たちを**フォロー**してください。
* **HackTricks**および**HackTricks Cloud**のgithubリポジトリにPRを提出して、あなたのハッキングトリックを共有してください。
2022-04-28 16:01:33 +00:00
< / details >