2023-07-07 23:42:27 +00:00
|
|
|
|
# XSSツール
|
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
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
* **サイバーセキュリティ会社**で働いていますか? **HackTricksで会社を宣伝**したいですか?または、**最新バージョンのPEASSにアクセスしたり、HackTricksをPDFでダウンロード**したいですか?[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
|
|
|
|
|
* [**The PEASS Family**](https://opensea.io/collection/the-peass-family)を見つけてください。独占的な[**NFT**](https://opensea.io/collection/the-peass-family)のコレクションです。
|
|
|
|
|
* [**公式のPEASS&HackTricksグッズ**](https://peass.creator-spring.com)を手に入れましょう。
|
|
|
|
|
* [**💬**](https://emojipedia.org/speech-balloon/) [**Discordグループ**](https://discord.gg/hRep4RUj7f)または[**telegramグループ**](https://t.me/peass)に**参加**するか、**Twitter**で**フォロー**してください[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@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-10-03 09:49:04 +00:00
|
|
|
|
## XSStrike
|
|
|
|
|
```bash
|
2020-07-15 15:43:14 +00:00
|
|
|
|
git clone https://github.com/s0md3v/XSStrike.git
|
2022-10-03 09:49:04 +00:00
|
|
|
|
cd XSStrike
|
|
|
|
|
pip install -r requirements.txt
|
|
|
|
|
python xsstrike.py
|
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
python xsstrike.py -u "http://SERVER_IP:PORT/index.php?task=test"
|
2020-07-15 15:43:14 +00:00
|
|
|
|
```
|
2023-07-07 23:42:27 +00:00
|
|
|
|
**基本的な使用方法(Get):**
|
|
|
|
|
python3 xsstrike.py --headers -u "http://localhost/vulnerabilities/xss\_r/?name=asd"
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
**基本的な使用方法(Post):**
|
|
|
|
|
python xsstrike.py -u "http://example.com/search.php" --data "q=query"
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
**クローリング(デフォルトで深さ2):**
|
|
|
|
|
python xsstrike.py -u "http://example.com/page.php" --crawl -l 3
|
|
|
|
|
|
|
|
|
|
**隠れたパラメータを見つける:**
|
|
|
|
|
python xsstrike.py -u "http://example.com/page.php" --params
|
|
|
|
|
|
|
|
|
|
**追加オプション:**
|
|
|
|
|
\--headers #カスタムヘッダーを設定します(クッキーなど)。毎回設定する必要があります。
|
|
|
|
|
\--skip-poc
|
|
|
|
|
\--skip-dom #DOM XSSスキャンをスキップします
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
## BruteXSS
|
2021-10-18 11:21:18 +00:00
|
|
|
|
```
|
2020-07-15 15:43:14 +00:00
|
|
|
|
git clone https://github.com/rajeshmajumdar/BruteXSS
|
|
|
|
|
```
|
2023-07-07 23:42:27 +00:00
|
|
|
|
XSSCrapyは、GUIを使用してXSSの脆弱な(GETまたはPOST)パラメータを見つけるためのペイロードのリストを使用するツールです。\
|
|
|
|
|
カスタムヘッダー(クッキーなど)は設定できません。
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-10-03 09:49:04 +00:00
|
|
|
|
## XSSer
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2021-10-18 11:21:18 +00:00
|
|
|
|
[https://github.com/epsylon/xsser](https://github.com/epsylon/xsser)\
|
2023-07-07 23:42:27 +00:00
|
|
|
|
Kaliにはすでにインストールされています。\
|
|
|
|
|
XSSを見つけるための完全なツールです。
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
**基本的な使用方法(GET):**\
|
2021-10-18 11:21:18 +00:00
|
|
|
|
\
|
2023-07-07 23:42:27 +00:00
|
|
|
|
ツールはペイロードを送信しません:(
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-10-03 09:49:04 +00:00
|
|
|
|
## XSSCrapy
|
2021-10-18 11:21:18 +00:00
|
|
|
|
```
|
2020-07-15 15:43:14 +00:00
|
|
|
|
git clone https://github.com/DanMcInerney/xsscrapy
|
|
|
|
|
```
|
2023-07-07 23:42:27 +00:00
|
|
|
|
おすすめしません。不必要な出力が多く、正常に動作しません。
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
2022-10-03 09:49:04 +00:00
|
|
|
|
## Dalfox
|
2020-07-15 15:43:14 +00:00
|
|
|
|
|
|
|
|
|
[https://github.com/hahwul/dalfox](https://github.com/hahwul/dalfox)
|
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
|
|
|
|
|
2023-07-07 23:42:27 +00:00
|
|
|
|
* **サイバーセキュリティ企業で働いていますか?** HackTricksで**会社を宣伝**したいですか?または、**PEASSの最新バージョンにアクセスしたり、HackTricksをPDFでダウンロード**したいですか?[**SUBSCRIPTION PLANS**](https://github.com/sponsors/carlospolop)をチェックしてください!
|
|
|
|
|
* [**The PEASS Family**](https://opensea.io/collection/the-peass-family)を見つけてください。独占的な[**NFT**](https://opensea.io/collection/the-peass-family)のコレクションです。
|
|
|
|
|
* [**公式のPEASS&HackTricksのグッズ**](https://peass.creator-spring.com)を手に入れましょう。
|
|
|
|
|
* [**💬**](https://emojipedia.org/speech-balloon/) [**Discordグループ**](https://discord.gg/hRep4RUj7f)または[**telegramグループ**](https://t.me/peass)に参加するか、**Twitter**で私をフォローしてください[**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@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>
|