mirror of
https://github.com/trufflesecurity/xsshunter
synced 2024-11-10 06:44:13 +00:00
fixing aws regex
This commit is contained in:
parent
a1358c748f
commit
da471c716d
1 changed files with 1 additions and 1 deletions
2
probe.js
2
probe.js
|
@ -204,7 +204,7 @@ function send_collected_page( page_data ) {
|
|||
function look_for_secrets( data ) {
|
||||
var findings = [];
|
||||
let secret_regexes = {
|
||||
"aws": "\b((?:AKIA|ABIA|ACCA|ASIA)[0-9A-Z]{16})\b",
|
||||
"aws": "((?:AKIA|ABIA|ACCA|ASIA)[0-9A-Z]{16})",
|
||||
"slack": "(https://hooks\.slack\.com/services/[A-Za-z0-9+/]{44,46})",
|
||||
"GCP": "\{[^{]+auth_provider_x509_cert_url[^}]+\}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue