Merge pull request #829 from V3ntus/patch-1

docs: fix typo in "automation"
This commit is contained in:
HackTricks 2024-04-01 17:58:35 +02:00 committed by GitHub
commit 1a1282cda2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -94,7 +94,7 @@ dig -x 2a00:1450:400c:c06::93 @<DNS_IP> #reverse IPv6 lookup
#Use [-p PORT] or -6 (to use ivp6 address of dns)
```
#### Autmation
#### Automation
```bash
for sub in $(cat <WORDLIST>);do dig $sub.<DOMAIN> @<DNS_IP> | grep -v ';\|SOA' | sed -r '/^\s*$/d' | grep $sub | tee -a subdomains.txt;done