Update Recon.md

This commit is contained in:
Mehdi 2023-09-02 13:34:37 +03:30 committed by GitHub
parent 1de722c07a
commit 02e55dac1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -430,11 +430,19 @@ amass enum -d tesla.com | grep tesla.com # To just list subdomains
* [subfinder](https://github.com/projectdiscovery/subfinder) * [subfinder](https://github.com/projectdiscovery/subfinder)
```bash ```bash
# Subfinder, use -silent to only have subdomains in the output # Subfinder, use -silent to only have subdomains in the output
./subfinder-linux-amd64 -d tesla.com [-silent] subfinder -d tesla.com [-silent]
``` ```
* [crt.sh](https://crt.sh/) * [crt.sh](https://crt.sh/)
The crt.sh website allows users to search for certificates associated with specific domain names or subdomains. It provides detailed information about each certificate, including the common name and subject alternative names (SANs) that list additional domain names or subdomains covered by the certificate.
```bash
curl -s https://crt.sh/\?q\=\target.com\&output\=json | jq -r '.[].name_value' | grep -Po '(\w+\.\w+\.\w+)$'
```
OR
```bash ```bash
# Get Domains from crt free API # Get Domains from crt free API
crt(){ crt(){
@ -442,18 +450,20 @@ crt(){
| grep -oE "[\.a-zA-Z0-9-]+\.$1" \ | grep -oE "[\.a-zA-Z0-9-]+\.$1" \
| sort -u | sort -u
} }
crt tesla.com crt target.com
``` ```
* [massdns](https://github.com/blechschmidt/massdns) * [massdns](https://github.com/blechschmidt/massdns)
```bash ```bash
sed 's/$/.domain.com/' subdomains.txt > bf-subdomains.txt sed 's/$/.domain.com/' subdomains.txt > bf-subdomains.txt
massdns -r resolvers.txt -w /tmp/results.txt bf-subdomains.txt massdns -r resolvers.txt -w /tmp/results.txt bf-subdomains.txt
grep -E "tesla.com. [0-9]+ IN A .+" /tmp/results.txt grep -E "target.com. [0-9]+ IN A .+" /tmp/results.txt
# running assetfinder tool for subdomains and massDNS tool for resolving # running assetfinder tool for subdomains and massDNS tool for resolving
assetfinder domain.com subs-only | massdns -r resolvers.txt -o S -w resolved.txt assetfinder target.com subs-only | massdns -r resolvers.txt -o S -w resolved.txt
``` ```