Skip to content

Commit 057fee7

Browse files
authored
Add curl command for AWS key search
Added a new curl command for searching AWS keys using grep.app.
1 parent 56844da commit 057fee7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Threat_Intel.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -581,6 +581,14 @@ fi
581581
curl -s -H "Accept: application/json" "https://grep.app/api/search?q=-----BEGIN+RSA+PRIVATE+KEY-----" | jq '.'
582582
```
583583

584+
```sh
585+
curl -sG "https://grep.app/search" \
586+
--data-urlencode "regexp=true" \
587+
--data-urlencode 'q="AKIA[A-Z0-9]{16}|ASIA[A-Z0-9]{16}"' \
588+
| sed -n 's/.*<mark>\([^<]*\)<\/mark>.*/\1/p' \
589+
| sort -u
590+
```
591+
584592
## Certificate Transparency Logs Enumeration with Go
585593

586594
Certificate Transparency (CT) logs are publicly accessible repositories that record all SSL/TLS certificates issued by Certificate Authorities. These logs make it possible to monitor certificate issuance, detect misissued certificates, and discover subdomains and services associated with a target domain.

0 commit comments

Comments
 (0)