mirror of
https://github.com/EdOverflow/bugbounty-cheatsheet.git
synced 2024-11-25 04:20:19 +00:00
Create recon.md
This commit is contained in:
parent
e42af5d69e
commit
ca81a26832
1 changed files with 9 additions and 0 deletions
9
cheatsheets/recon.md
Normal file
9
cheatsheets/recon.md
Normal file
|
@ -0,0 +1,9 @@
|
|||
# Certspotter
|
||||
|
||||
```zsh
|
||||
curl https://certspotter.com/api/v0/certs\?domain\=example.com | jq '.[].dns_names[]' | sed 's/\"//g' | sed 's/\*\.//g' | uniq
|
||||
```
|
||||
|
||||
```zsh
|
||||
curl https://certspotter.com/api/v0/certs\?domain\=example.com | jq '.[].dns_names[]' | sed 's/\"//g' | sed 's/\*\.//g' | uniq | dig +short -f - | uniq | nmap -T5 -Pn -sS -i - -p 80,443,21,22,8080,8081,8443 --open -n -oG -
|
||||
```
|
Loading…
Reference in a new issue