QuestionQ179
Secure Software ImplementationSecurity code review identifies unvalidated input calls an attacker can make and prevents the server from processing them. It performs review checks on tainted servlet calls to identify unvalidated attacker input. Choose the appropriate review checks and place them before their respective functions.
Select and Place:
Drag & Drop
getParameter()
getQueryString()
getCookies()
getHeaders()
It is used to check the unvalidated sources of input from URI parameters in javax.servlet.HttpServletRequest class.
It is used to check the unvalidated source of input from Form fields in javax.servlet.HttpServletRequest class.
It is used to check the unvalidated sources of input from Cookies javax.servlet.HttpServletRequest class.
It is used to check the unvalidated sources of input from HTTP headers javax.servlet.HttpServletRequest class.
Community Discussion