2024-02-07 04:47:05 +00:00
# Kerberos Double Hop Problem
2022-10-05 21:51:12 +00:00
< details >
2023-04-25 18:35:28 +00:00
< summary > < a href = "https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology" > < strong > ☁️ HackTricks Cloud ☁️< / strong > < / a > -< a href = "https://twitter.com/hacktricks_live" > < strong > 🐦 Twitter 🐦< / strong > < / a > - < a href = "https://www.twitch.tv/hacktricks_live/schedule" > < strong > 🎙️ Twitch 🎙️< / strong > < / a > - < a href = "https://www.youtube.com/@hacktricks_LIVE" > < strong > 🎥 Youtube 🎥< / strong > < / a > < / summary >
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
* **サイバーセキュリティ企業**で働いていますか? **HackTricksで企業を宣伝**したいですか?または、**最新バージョンのPEASSにアクセス**したいですか、またはHackTricksを**PDFでダウンロード**したいですか?[**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )を発見し、独占的な[NFTs](https://opensea.io/collection/the-peass-family)のコレクションを見つけてください
2024-02-07 04:47:05 +00:00
* [**公式PEASS& HackTricks swag** ](https://peass.creator-spring.com )を手に入れましょう
2024-02-08 03:59:37 +00:00
* **[💬](https://emojipedia.org/speech-balloon/) Discordグループ**に参加するか、[telegramグループ](https://t.me/peass)に参加するか、**Twitter** 🐦[**@carlospolopm**](https://twitter.com/hacktricks_live)**をフォロー**してください。
* **ハッキングトリックを共有するには、**[**hacktricks repo**](https://github.com/carlospolop/hacktricks) **および** [**hacktricks-cloud repo** ](https://github.com/carlospolop/hacktricks-cloud ) **にPRを提出してください。**
2022-10-05 21:51:12 +00:00
< / details >
2024-02-08 03:59:37 +00:00
## Introduction
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
Kerberosの「Double Hop」問題は、**Kerberos認証を2つのホップを介して**使用しようとするときに発生します。たとえば、**PowerShell**/**WinRM**を使用する場合です。
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
**Kerberos**を介した**認証**が発生すると、**資格情報**は**メモリにキャッシュされません**。したがって、mimikatzを実行しても、ユーザーの資格情報をマシンで見つけることはできません。
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
これは、Kerberosで接続するときに次の手順が実行されるためです:
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
1. User1が資格情報を提供し、**ドメインコントローラー**がUser1にKerberos **TGT**を返します。
2. User1は**TGT**を使用して**Server1**に接続するための**サービスチケット**を要求します。
3. User1は**Server1**に接続し、**サービスチケット**を提供します。
4. **Server1**にはUser1の資格情報やUser1の**TGT**がキャッシュされていないため、Server1から2番目のサーバーにログインしようとすると、**認証できません** 。
2022-10-05 21:51:12 +00:00
2023-07-07 23:42:27 +00:00
### 制約のない委任
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
PCで**制約のない委任**が有効になっている場合、**サーバー**はそれにアクセスするすべてのユーザーの**TGT**を取得します。さらに、制約のない委任が使用されている場合、おそらく**ドメインコントローラーを侵害**できるでしょう。\
[**制約のない委任ページで詳細を確認** ](unconstrained-delegation.md )。
2022-10-05 21:51:12 +00:00
2022-10-05 22:25:34 +00:00
### CredSSP
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
この問題を回避する別の方法は、[**著しく安全でない**](https://docs.microsoft.com/en-us/powershell/module/microsoft.wsman.management/enable-wsmancredssp?view=powershell-7) **Credential Security Support Provider**です。Microsoftによると:
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
> CredSSP認証は、ユーザーの資格情報をローカルコンピューターからリモートコンピューターに委任します。この慣行は、リモート操作のセキュリティリスクを高めます。リモートコンピューターが侵害された場合、資格情報が渡されると、その資格情報を使用してネットワークセッションを制御できます。
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
**CredSSP**は、セキュリティ上の懸念から、本番システム、機密ネットワーク、類似の環境で無効にすることが強く推奨されます。**CredSSP**が有効かどうかを確認するには、`Get-WSManCredSSP`コマンドを実行できます。このコマンドにより、**CredSSPの状態を確認**し、**WinRM**が有効であればリモートで実行することもできます。
2022-10-05 22:25:34 +00:00
```powershell
Invoke-Command -ComputerName bizintel -Credential ta\redsuit -ScriptBlock {
2023-07-07 23:42:27 +00:00
Get-WSManCredSSP
2022-10-05 22:25:34 +00:00
}
```
2023-07-07 23:42:27 +00:00
## 回避策
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
### Invoke Command
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
ダブルホップの問題に対処するために、ネストされた `Invoke-Command` を使用する方法が提案されています。これは問題を直接解決するのではなく、特別な構成を必要とせずに回避策を提供します。このアプローチにより、初期の攻撃マシンから実行されたPowerShellコマンドまたは最初のサーバーと事前に確立されたPS-Sessionを介して、セカンダリサーバーでコマンド( `hostname`)を実行できます。以下にその方法を示します:
2022-10-05 22:25:34 +00:00
```powershell
$cred = Get-Credential ta\redsuit
Invoke-Command -ComputerName bizintel -Credential $cred -ScriptBlock {
2023-07-07 23:42:27 +00:00
Invoke-Command -ComputerName secdev -Credential $cred -ScriptBlock {hostname}
2022-10-05 22:25:34 +00:00
}
```
2024-02-08 03:59:37 +00:00
### 登録PSSession構成
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
ダブルホップ問題をバイパスする解決策として、`Register-PSSessionConfiguration`を`Enter-PSSession`と共に使用する方法が提案されています。この方法は、`evil-winrm`とは異なるアプローチを必要とし、ダブルホップの制限を受けないセッションを可能にします。
2022-10-05 22:25:34 +00:00
```powershell
Register-PSSessionConfiguration -Name doublehopsess -RunAsCredential domain_name\username
Restart-Service WinRM
Enter-PSSession -ConfigurationName doublehopsess -ComputerName < pc_name > -Credential domain_name\username
klist
```
2024-02-08 03:59:37 +00:00
### ポートフォワーディング
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
中間ターゲットのローカル管理者に対して、ポートフォワーディングを使用すると、リクエストを最終サーバーに送信できます。 `netsh` を使用して、ポートフォワーディングのためのルールを追加し、転送されたポートを許可するためのWindowsファイアウォールルールを追加できます。
2022-10-05 22:25:34 +00:00
```bash
netsh interface portproxy add v4tov4 listenport=5446 listenaddress=10.35.8.17 connectport=5985 connectaddress=10.35.8.23
netsh advfirewall firewall add rule name=fwd dir=in action=allow protocol=TCP localport=5446
```
2024-02-08 03:59:37 +00:00
#### winrs.exe
2022-10-05 21:51:12 +00:00
2024-02-08 03:59:37 +00:00
`winrs.exe` は、WinRMリクエストを転送するために使用できます。PowerShellの監視が懸念される場合、検出されにくいオプションとして機能するかもしれません。以下のコマンドは、その使用方法を示しています:
2022-10-05 22:25:34 +00:00
```bash
winrs -r:http://bizintel:5446 -u:ta\redsuit -p:2600leet hostname
```
2024-02-08 03:59:37 +00:00
### OpenSSH
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
最初のサーバーにOpenSSHをインストールすると、ジャンプボックスシナリオに特に有用なダブルホップの問題の回避策が可能になります。この方法では、Windows用のOpenSSHのCLIインストールとセットアップが必要です。パスワード認証用に構成されている場合、中間サーバーがユーザーの代わりにTGTを取得できるようになります。
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
#### OpenSSHのインストール手順
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
1. 最新のOpenSSHリリースzipをダウンロードして、対象サーバーに移動します。
2. zipファイルを解凍し、`Install-sshd.ps1`スクリプトを実行します。
3. ポート22を開くためのファイアウォールルールを追加し、SSHサービスが実行されていることを確認します。
2022-10-05 22:25:34 +00:00
2024-02-08 03:59:37 +00:00
`Connection reset` エラーを解決するには、アクセス許可を更新してOpenSSHディレクトリでの読み取りと実行アクセスをすべてのユーザーに許可する必要があるかもしれません。
2022-10-05 22:25:34 +00:00
```bash
icacls.exe "C:\Users\redsuit\Documents\ssh\OpenSSH-Win64" /grant Everyone:RX /T
```
2023-07-07 23:42:27 +00:00
## 参考文献
2022-10-05 22:25:34 +00:00
* [https://techcommunity.microsoft.com/t5/ask-the-directory-services-team/understanding-kerberos-double-hop/ba-p/395463?lightbox-message-images-395463=102145i720503211E78AC20 ](https://techcommunity.microsoft.com/t5/ask-the-directory-services-team/understanding-kerberos-double-hop/ba-p/395463?lightbox-message-images-395463=102145i720503211E78AC20 )
* [https://posts.slayerlabs.com/double-hop/ ](https://posts.slayerlabs.com/double-hop/ )
* [https://learn.microsoft.com/en-gb/archive/blogs/sergey\_babkins\_blog/another-solution-to-multi-hop-powershell-remoting ](https://learn.microsoft.com/en-gb/archive/blogs/sergey\_babkins\_blog/another-solution-to-multi-hop-powershell-remoting )
* [https://4sysops.com/archives/solve-the-powershell-multi-hop-problem-without-using-credssp/ ](https://4sysops.com/archives/solve-the-powershell-multi-hop-problem-without-using-credssp/ )
2022-10-05 21:51:12 +00:00
< details >
2023-04-25 18:35:28 +00:00
< summary > < a href = "https://cloud.hacktricks.xyz/pentesting-cloud/pentesting-cloud-methodology" > < strong > ☁️ HackTricks Cloud ☁️< / strong > < / a > -< a href = "https://twitter.com/hacktricks_live" > < strong > 🐦 Twitter 🐦< / strong > < / a > - < a href = "https://www.twitch.tv/hacktricks_live/schedule" > < strong > 🎙️ Twitch 🎙️< / strong > < / a > - < a href = "https://www.youtube.com/@hacktricks_LIVE" > < strong > 🎥 Youtube 🎥< / strong > < / a > < / summary >
2022-10-05 21:51:12 +00:00
2024-02-07 04:47:05 +00:00
* **サイバーセキュリティ企業**で働いていますか? **HackTricksで会社を宣伝**したいですか?または、**PEASSの最新バージョンを入手したり、HackTricksをPDFでダウンロード**したいですか?[**SUBSCRIPTION PLANS** ](https://github.com/sponsors/carlospolop)をチェックしてください!
* [**The PEASS Family** ](https://opensea.io/collection/the-peass-family )を発見し、独占的な[NFTs](https://opensea.io/collection/the-peass-family)コレクションをご覧ください
2024-02-08 03:59:37 +00:00
* [**公式PEASS& HackTricksスウォッグ** ](https://peass.creator-spring.com )を入手してください
* [**💬** ](https://emojipedia.org/speech-balloon/ ) [**Discordグループ** ](https://discord.gg/hRep4RUj7f )または[**telegramグループ**](https://t.me/peass)に**参加**するか、**Twitter** 🐦[**@carlospolopm**](https://twitter.com/hacktricks_live)**をフォロー**してください。
* **ハッキングトリックを共有するには、**[**hacktricksリポジトリ**](https://github.com/carlospolop/hacktricks) **および** [**hacktricks-cloudリポジトリ** ](https://github.com/carlospolop/hacktricks-cloud ) **にPRを提出してください。**
2022-10-05 21:51:12 +00:00
< / details >