Penetration Testing - HPP data pollution - Principle | Scene

Web server parameter acquisition function to obtain the parameters

PHP/Apache       $_GET(“par”)            Last

JSP/Tomcat       Request.getParameter(“par”)    First

Perl(CGI)/Apache   Param(“par”)            First

Python/Apache     getvalue(“par”)           All(List)

ASP/IIS        Request.QueryString(“par”)    All (comma-delimited string)

Guess you like

Origin www.cnblogs.com/AtesetEnginner/p/12375499.html