mirror of
https://github.com/xalgord/My-Methodologies.git
synced 2024-11-23 20:23:04 +00:00
5 lines
158 B
Markdown
5 lines
158 B
Markdown
|
```
|
||
|
$ amass enum -brute -passive -d abercrombie.com | httpx -silent -status-code | tee domain.txt
|
||
|
$ cat domain.txt | grep 200 | cut -d "[" -f1 > urls.txt
|
||
|
```
|