-
Notifications
You must be signed in to change notification settings - Fork 138
New issue
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
change owasp 2013 to owasp 2017 #238
base: master
Are you sure you want to change the base?
Conversation
@@ -123,42 +123,22 @@ def writeRules(String rulesSetName,List<Plugin> plugins,List<String> includedBug | |||
description(pattern.Details.text().trim()) | |||
|
|||
//OWASP TOP 10 2017 | |||
if (pattern.Details.text().toLowerCase().contains('injection') || pattern.Details.text().contains('A1-Injection')) { | |||
if (pattern.Details.text().toLowerCase().contains('injection') || pattern.Details.text().contains('2017_A1-Injection')) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
FYI: The second condition is redundant. The first will always match first.
I would not require a change. The code might be clearer this way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just realized it was already like that.. nvm.
The smoke test is not running @VinodAnandan
|
Hi,
I want to change owasp 2013 to owasp 2017.
I put version 3.11-SNAPSHOT in the pom xml, I didn't know what to put.