Replies: 2 comments 2 replies
|
This is not possible with the current design. |
2 replies
|
The Fix — quote the argument: dnsx -d DOMAIN -w "my-od*"But that still won't work because dnsx What you actually want:
# Generate the wordlist
echo "my-od" > /tmp/wordlist.txt
for i in $(seq 1 100); do echo "my-od-$i" >> /tmp/wordlist.txt; done
# Run dnsx with it
dnsx -d DOMAIN -w /tmp/wordlist.txt -a -resp -silent
printf "my-od
"; seq 1 100 | sed 's/^/my-od-/' | dnsx -d DOMAIN -a -resp -silent
subfinder -d DOMAIN -silent | grep "my-od" | dnsx -a -resp -silentThe |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi,
Is it possible to use a wildcard with the -w option?
I'm trying to find sub-domains starting with :
I've tried
dnsx -d DOMAIN -w my-od*but I get an error:zsh: no matches found: my-od*Thank you.
All reactions