19 lines
568 B
Markdown
19 lines
568 B
Markdown
|
# Bypassing Rate Limit
|
||
|
|
||
|
* [Infosecwriteups article](https://infosecwriteups.com/bypassing-rate-limit-like-a-pro-5f3e40250d3c)
|
||
|
* [Anotherinfosecwriteups article](https://infosecwriteups.com/no-rate-limit-use-like-a-pro-33fc76744a17)
|
||
|
* [Hacktricks' site](https://book.hacktricks.xyz/pentesting-web/rate-limit-bypass)
|
||
|
|
||
|
# Usage
|
||
|
|
||
|
* Add one of the following lines to the header in round robin
|
||
|
```sh
|
||
|
X-Originating-IP: 127.0.0.1
|
||
|
X-Forwarded-For: 127.0.0.1
|
||
|
X-Remote-IP: 127.0.0.1
|
||
|
X-Remote-Addr: 127.0.0.1
|
||
|
X-Client-IP: 127.0.0.1
|
||
|
X-Host: 127.0.0.1
|
||
|
X-Forwared-Host: 127.0.0.1
|
||
|
```
|