Merge pull request #314 from ahboon/HTTP-Parameter-Pollution

Added Golang param information
This commit is contained in:
Swissky 2020-12-22 20:02:56 +01:00 committed by GitHub
commit 609c38bde5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -35,6 +35,9 @@ When ?par1=a&par1=b
| Python Flask |First occurrence |a |
| Python Django |Last occurrence |b |
| Nodejs |All occurrences |a,b |
| Golang net/http - `r.URL.Query().Get("param")` |First occurrence |a |
| Golang net/http - `r.URL.Query()["param"]` |All occurrences |a,b |
## References
- [HTTP Parameter Pollution - Imperva](https://www.imperva.com/learn/application-security/http-parameter-pollution/)