-
-
Notifications
You must be signed in to change notification settings - Fork 726
feat: add several other GitHub access token patterns #2200
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,84 +1,129 @@ | ||
| // This file will probably trigger a lot of scanners. Sorry. | ||
|
|
||
| pub enum TestValue<'a> { | ||
|
Member
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. Good idea! |
||
| Single(&'a str), | ||
| Multiple(&'a [&'a str]), | ||
| } | ||
|
|
||
| // A list of (name, regex, test), where test should match against regex | ||
| pub static SECRET_PATTERNS: &[(&str, &str, &str)] = &[ | ||
| pub static SECRET_PATTERNS: &[(&str, &str, TestValue)] = &[ | ||
| ( | ||
| "AWS Access Key ID", | ||
| "AKIA[0-9A-Z]{16}", | ||
| "AKIAIOSFODNN7EXAMPLE", | ||
| TestValue::Single("AKIAIOSFODNN7EXAMPLE"), | ||
| ), | ||
| ( | ||
| "AWS secret access key env var", | ||
| "AWS_ACCESS_KEY_ID", | ||
| "export AWS_ACCESS_KEY_ID=KEYDATA", | ||
| TestValue::Single("export AWS_ACCESS_KEY_ID=KEYDATA"), | ||
| ), | ||
| ( | ||
| "AWS secret access key env var", | ||
| "AWS_ACCESS_KEY_ID", | ||
| "export AWS_ACCESS_KEY_ID=KEYDATA", | ||
| TestValue::Single("export AWS_ACCESS_KEY_ID=KEYDATA"), | ||
| ), | ||
| ( | ||
| "Microsoft Azure secret access key env var", | ||
| "AZURE_.*_KEY", | ||
| "export AZURE_STORAGE_ACCOUNT_KEY=KEYDATA", | ||
| TestValue::Single("export AZURE_STORAGE_ACCOUNT_KEY=KEYDATA"), | ||
| ), | ||
| ( | ||
| "Google cloud platform key env var", | ||
| "GOOGLE_SERVICE_ACCOUNT_KEY", | ||
| "export GOOGLE_SERVICE_ACCOUNT_KEY=KEYDATA", | ||
| TestValue::Single("export GOOGLE_SERVICE_ACCOUNT_KEY=KEYDATA"), | ||
| ), | ||
| ( | ||
| "Atuin login", | ||
| r"atuin\s+login", | ||
| "atuin login -u mycoolusername -p mycoolpassword -k \"lots of random words\"", | ||
| TestValue::Single("atuin login -u mycoolusername -p mycoolpassword -k \"lots of random words\""), | ||
| ), | ||
| ( | ||
| "GitHub PAT (old)", | ||
| "ghp_[a-zA-Z0-9]{36}", | ||
| "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", // legit, I expired it | ||
| TestValue::Single("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"), // legit, I expired it | ||
| ), | ||
| ( | ||
| "GitHub PAT (new)", | ||
| "github_pat_[a-zA-Z0-9]{22}_[a-zA-Z0-9]{59}", | ||
| "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", // also legit, also expired | ||
| "gh1_[A-Za-z0-9]{21}_[A-Za-z0-9]{59}|github_pat_[0-9][A-Za-z0-9]{21}_[A-Za-z0-9]{59}", | ||
| TestValue::Multiple(&[ | ||
| "gh1_1234567890abcdefghijk_1234567890abcdefghijklmnopqrstuvwxyz1234567890abcdefghijklm", | ||
| "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", // also legit, also expired | ||
| ]) | ||
| ), | ||
| ( | ||
| "GitHub OAuth Access Token", | ||
| "gho_[A-Za-z0-9]{36}", | ||
| TestValue::Single("gho_1234567890abcdefghijklmnopqrstuvwx000"), // not a real token | ||
| ), | ||
| ( | ||
| "GitHub OAuth Access Token (user)", | ||
| "ghu_[A-Za-z0-9]{36}", | ||
| TestValue::Single("ghu_1234567890abcdefghijklmnopqrstuvwx000"), // not a real token | ||
| ), | ||
| ( | ||
| "GitHub App Installation Access Token", | ||
| "ghs_[A-Za-z0-9]{36}", | ||
| TestValue::Single("ghs_1234567890abcdefghijklmnopqrstuvwx000"), // not a real token | ||
| ), | ||
| ( | ||
| "GitHub Refresh Token", | ||
| "ghr_[A-Za-z0-9]{76}", | ||
| TestValue::Single("ghr_1234567890abcdefghijklmnopqrstuvwx1234567890abcdefghijklmnopqrstuvwx1234567890abcdefghijklmnopqrstuvwx"), // not a real token | ||
| ), | ||
| ( | ||
| "GitHub App Installation Access Token v1", | ||
| "v1\\.[0-9A-Fa-f]{40}", | ||
| TestValue::Single("v1.1234567890abcdef1234567890abcdef12345678"), // not a real token | ||
| ), | ||
| ( | ||
| "GitLab PAT", | ||
| "glpat-[a-zA-Z0-9_]{20}", | ||
| "glpat-RkE_BG5p_bbjML21WSfy", | ||
| TestValue::Single("glpat-RkE_BG5p_bbjML21WSfy"), | ||
| ), | ||
| ( | ||
| "Slack OAuth v2 bot", | ||
| "xoxb-[0-9]{11}-[0-9]{11}-[0-9a-zA-Z]{24}", | ||
| "xoxb-17653672481-19874698323-pdFZKVeTuE8sk7oOcBrzbqgy", | ||
| TestValue::Single("xoxb-17653672481-19874698323-pdFZKVeTuE8sk7oOcBrzbqgy"), | ||
| ), | ||
| ( | ||
| "Slack OAuth v2 user token", | ||
| "xoxp-[0-9]{11}-[0-9]{11}-[0-9a-zA-Z]{24}", | ||
| "xoxp-17653672481-19874698323-pdFZKVeTuE8sk7oOcBrzbqgy", | ||
| TestValue::Single("xoxp-17653672481-19874698323-pdFZKVeTuE8sk7oOcBrzbqgy"), | ||
| ), | ||
| ( | ||
| "Slack webhook", | ||
| "T[a-zA-Z0-9_]{8}/B[a-zA-Z0-9_]{8}/[a-zA-Z0-9_]{24}", | ||
| "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX", | ||
| TestValue::Single("https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX"), | ||
| ), | ||
| ("Stripe test key", "sk_test_[0-9a-zA-Z]{24}", "sk_test_1234567890abcdefghijklmnop"), | ||
| ("Stripe live key", "sk_live_[0-9a-zA-Z]{24}", "sk_live_1234567890abcdefghijklmnop"), | ||
| ("Stripe test key", "sk_test_[0-9a-zA-Z]{24}", TestValue::Single("sk_test_1234567890abcdefghijklmnop")), | ||
| ("Stripe live key", "sk_live_[0-9a-zA-Z]{24}", TestValue::Single("sk_live_1234567890abcdefghijklmnop")), | ||
| ]; | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use regex::Regex; | ||
|
|
||
| use crate::secrets::SECRET_PATTERNS; | ||
| use crate::secrets::{TestValue, SECRET_PATTERNS}; | ||
|
|
||
| #[test] | ||
| fn test_secrets() { | ||
| for (name, regex, test) in SECRET_PATTERNS { | ||
| let re = | ||
| Regex::new(regex).unwrap_or_else(|_| panic!("Failed to compile regex for {name}")); | ||
|
|
||
| assert!(re.is_match(test), "{name} test failed!"); | ||
| match test { | ||
| TestValue::Single(test) => { | ||
| assert!(re.is_match(test), "{name} test failed!"); | ||
| } | ||
| TestValue::Multiple(tests) => { | ||
| for test_str in tests.iter() { | ||
| assert!( | ||
| re.is_match(test_str), | ||
| "{name} test with value \"{test_str}\" failed!" | ||
| ); | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This will be overwritten when we next generate the changelog (with git cliff), but I appreciate the thought 😊