mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-22 20:53:37 +00:00
156 lines
11 KiB
Markdown
156 lines
11 KiB
Markdown
|
# 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>
|
||
|
|
||
|
* क्या आप **साइबरसिक्योरिटी कंपनी** में काम करते हैं? क्या आप चाहते हैं कि आपकी **कंपनी का विज्ञापन HackTricks में दिखाई दे**? या क्या आप **PEASS के नवीनतम संस्करण तक पहुँचना चाहते हैं या HackTricks को PDF में डाउनलोड करना चाहते हैं**? [**सब्सक्रिप्शन प्लान्स**](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 समूह**](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 repo**](https://github.com/carlospolop/hacktricks) और [**hacktricks-cloud repo**](https://github.com/carlospolop/hacktricks-cloud) में PRs सबमिट करके.**
|
||
|
|
||
|
</details>
|
||
|
|
||
|
## **gRPC-Web Payloads को मैनिपुलेट करना**
|
||
|
gRPC-Web अनुरोधों में Content-Type: `application/grpc-web-text` का उपयोग करता है जो कि base64 encoded form में protobuf की तरह होता है, आप [gprc-coder](https://github.com/nxenon/grpc-pentest-suite) टूल का उपयोग कर सकते हैं, और आप इसका [Burp Suite Extension](https://github.com/nxenon/grpc-pentest-suite) भी इंस्टॉल कर सकते हैं।
|
||
|
|
||
|
### **gGRPC Coder Tool के साथ मैनुअल**
|
||
|
1. सबसे पहले payload को decode करें:
|
||
|
```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. नए पेलोड को एन्कोड करें
|
||
|
```bash
|
||
|
protoscope -s out.txt | python3 grpc-coder.py --encode --type grpc-web-text
|
||
|
```
|
||
|
4. Burp इंटरसेप्टर में आउटपुट का उपयोग करें:
|
||
|
```
|
||
|
AAAAADoSFkFtaW4gTmFzaXJpIFhlbm9uIEdSUEMYNjoePHNjcmlwdD5hbGVydChvcmlnaW4pPC9zY3JpcHQ+
|
||
|
```
|
||
|
### **gRPC-Web Coder Burp Suite Extension के साथ मैनुअल**
|
||
|
[gRPC-Web Pentest Suite](https://github.com/nxenon/grpc-pentest-suite) में आप gRPC-Web Coder Burp Suite Extension का उपयोग कर सकते हैं जो आसान है। इसकी रेपो में इंस्टालेशन और उपयोग के निर्देश पढ़ें।
|
||
|
|
||
|
## **gRPC-Web Javascript फाइलों का विश्लेषण**
|
||
|
हर gRPC-Web एप्लिकेशन में कम से कम एक Javascript फाइल होती है। आप फाइल का विश्लेषण करके नए संदेश, एंडपॉइंट्स और सेवाएं खोज सकते हैं। [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. आउटपुट का विश्लेषण करें और नए एंडपॉइंट्स और नई सेवाओं का परीक्षण करें:
|
||
|
```
|
||
|
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 |
|
||
|
+--------------+----------------+--------------+
|
||
|
```
|
||
|
## संदर्भ
|
||
|
|
||
|
* [gRPC-Web में हैकिंग के बारे में आर्टिकल अमीन नासिरी द्वारा](https://infosecwriteups.com/hacking-into-grpc-web-a54053757a45)
|
||
|
* [gRPC-Web Pentest Suite](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>
|
||
|
|
||
|
* क्या आप **साइबरसिक्योरिटी कंपनी** में काम करते हैं? क्या आप चाहते हैं कि आपकी **कंपनी का विज्ञापन HackTricks में दिखाई दे**? या क्या आप **PEASS के नवीनतम संस्करण तक पहुँच चाहते हैं या HackTricks को PDF में डाउनलोड करना चाहते हैं**? [**सब्सक्रिप्शन प्लान्स**](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 समूह**](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 repo**](https://github.com/carlospolop/hacktricks) और [**hacktricks-cloud repo**](https://github.com/carlospolop/hacktricks-cloud) में PRs सबमिट करके.**
|
||
|
|
||
|
</details>
|