Last active
April 24, 2021 18:48
-
-
Save ldez/4bdcb334c1cf18f1d2c4b86463cb34b0 to your computer and use it in GitHub Desktop.
github.com/securego/gosec configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"G101": { | |
"pattern": "(?i)passwd|pass|password|pwd|secret|private_key|token", | |
"ignore_entropy": false, | |
"entropy_threshold": "80.0", | |
"per_char_threshold": "3.0", | |
"truncate": "32" | |
}, | |
"G104": { | |
"io/ioutil": [ | |
"WriteFile" | |
] | |
}, | |
"G301": "0750", | |
"G302": "0600", | |
"G306": "0600" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment