-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat(secret): enhance secret scanning for python binary files #7223
Changes from 10 commits
5aca422
61260c7
62fda69
910f84e
b9a8a58
ee234ad
06cb7a0
17dd62e
9619cf7
965a73d
77d8c3e
d12e32c
906a59b
1ee8b8d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -366,6 +366,7 @@ func NewScanner(config *Config) Scanner { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
type ScanArgs struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
FilePath string | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Content []byte | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Binary bool | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
type Match struct { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -435,8 +436,22 @@ func (s *Scanner) Scan(args ScanArgs) types.Secret { | |||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
for _, match := range matched { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
findings = append(findings, toFinding(match.Rule, match.Location, censored)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
if args.Binary { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
for _, match := range matched { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
findings = append(findings, types.SecretFinding{ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
RuleID: match.Rule.ID, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Category: match.Rule.Category, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Severity: lo.Ternary(match.Rule.Severity == "", "UNKNOWN", match.Rule.Severity), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Title: match.Rule.Title, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Match: fmt.Sprintf("Binary file %q matches a rule %q", args.FilePath, match.Rule.Title), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
StartLine: 1, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
EndLine: 1, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
for _, match := range matched { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
findings = append(findings, toFinding(match.Rule, match.Location, censored)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I sugest to use
Suggested change
It might make sense to add flag to wdyt? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sure! it's a better way! |
||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(findings) == 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
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.
What if we omit the
is
prefix?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.
done