mirror of
https://github.com/daffainfo/AllAboutBugBounty.git
synced 2024-12-18 18:36:12 +00:00
Create Bypass 304.md
This commit is contained in:
parent
1d466b1133
commit
ecb57dcbb2
29
Bypass/Bypass 304.md
Normal file
29
Bypass/Bypass 304.md
Normal file
@ -0,0 +1,29 @@
|
||||
# 304 Not Modified Bypass
|
||||
|
||||
1. Delete "If-None-Match" header
|
||||
```
|
||||
GET /admin HTTP/1.1
|
||||
Host: target.com
|
||||
If-None-Match: W/"32-IuK7rSIJ92ka0c92kld"
|
||||
```
|
||||
Try this to bypass
|
||||
```
|
||||
GET /admin HTTP/1.1
|
||||
Host: target.com
|
||||
```
|
||||
|
||||
2. Adding random character in the end of "If-None-Match" header
|
||||
```
|
||||
GET /admin HTTP/1.1
|
||||
Host: target.com
|
||||
If-None-Match: W/"32-IuK7rSIJ92ka0c92kld"
|
||||
```
|
||||
Try this to bypass
|
||||
```
|
||||
GET /admin HTTP/1.1
|
||||
Host: target.com
|
||||
Host: target.com
|
||||
If-None-Match: W/"32-IuK7rSIJ92ka0c92kld" b
|
||||
```
|
||||
|
||||
Source: [https://anggigunawan17.medium.com/tips-bypass-etag-if-none-match-e1f0e650a521](https://anggigunawan17.medium.com/tips-bypass-etag-if-none-match-e1f0e650a521)
|
Loading…
Reference in New Issue
Block a user