From 7cb359644a15b5de58f8f24edb98ec81eb768889 Mon Sep 17 00:00:00 2001 From: pang9979 <86699842+pang9979@users.noreply.github.com> Date: Fri, 30 Jul 2021 13:34:02 +0800 Subject: [PATCH] Update table --- HTTP Parameter Pollution/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HTTP Parameter Pollution/README.md b/HTTP Parameter Pollution/README.md index 8192797..d1e3cee 100644 --- a/HTTP Parameter Pollution/README.md +++ b/HTTP Parameter Pollution/README.md @@ -37,6 +37,10 @@ When ?par1=a&par1=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 | +| IBM Lotus Domino |First occurrence |a | +| IBM HTTP Server |First occurrence |a | +| Perl CGI/Apache |First occurrence |a | +| mod_wsgi (Python)/Apache |First occurrence |a | | Python/Zope |All occurences in array |['a','b'] | ## References