My-Methodologies/subdomain-enumeration/README.md

6 lines
221 B
Markdown
Raw Normal View History

2023-05-07 07:48:50 +00:00
```
$ amass enum -brute -passive -d abercrombie.com | httpx -silent -status-code | tee domain.txt
$ cat domain.txt | grep 200 | cut -d "[" -f1 > urls.txt
2023-05-07 09:13:17 +00:00
$ gf xss td.com.txt | grep -Eo 'https?://[^\"]+' > tdfinal.txt
2023-05-07 07:48:50 +00:00
```