mirror of
https://github.com/securego/gosec.git
synced 2024-12-25 03:55:54 +00:00
Merge pull request #81 from GoASTScanner/experimental
Incorrect rule mapping in rulelist
This commit is contained in:
commit
423a303712
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ func GetFullRuleList() map[string]RuleInfo {
|
||||||
"G101": RuleInfo{"Look for hardcoded credentials", rules.NewHardcodedCredentials},
|
"G101": RuleInfo{"Look for hardcoded credentials", rules.NewHardcodedCredentials},
|
||||||
"G102": RuleInfo{"Bind to all interfaces", rules.NewBindsToAllNetworkInterfaces},
|
"G102": RuleInfo{"Bind to all interfaces", rules.NewBindsToAllNetworkInterfaces},
|
||||||
"G103": RuleInfo{"Audit the use of unsafe block", rules.NewUsingUnsafe},
|
"G103": RuleInfo{"Audit the use of unsafe block", rules.NewUsingUnsafe},
|
||||||
"G104": RuleInfo{"Audit errors not checked", rules.NewTemplateCheck},
|
"G104": RuleInfo{"Audit errors not checked", rules.NewNoErrorCheck},
|
||||||
|
|
||||||
// injection
|
// injection
|
||||||
"G201": RuleInfo{"SQL query construction using format string", rules.NewSqlStrFormat},
|
"G201": RuleInfo{"SQL query construction using format string", rules.NewSqlStrFormat},
|
||||||
|
|
Loading…
Reference in a new issue