We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Detect jsp include where the source included is dynamically constructed.
Unsafe samples
<jsp:include page="${param.secret_param_page}" />
<c:import url="${param.secret_param_page}" />
Safe samples
<%@include file="${param.secret_param_page}"%> <!-- file param can not be dynamic-->
<jsp:include page="header.jsp" /> <!-- static value -->
<c:import url="header.jsp" /> <!-- static value -->
The text was updated successfully, but these errors were encountered:
JSP include detection rule #104
44a4155
h3xstream
No branches or pull requests
Detect jsp include where the source included is dynamically constructed.
Unsafe samples
Safe samples
The text was updated successfully, but these errors were encountered: