Skip to content

How to enumerate/filter a subset of domains containing wildcards? #647

Closed Answered by forgedhallpass
vansh1 asked this question in Q&A
Discussion options

You must be logged in to vote

You have a couple of options to achieve this:

  1. You do passive searching for all the subdomains, and then filter the results manually using grep (or using the freshly implemented #575 feature, which is available on the dev branch)
subfinder -d hackerone.com -match "support*.hackerone.com" 
  1. You create generate the subdomains using a wordlist and then use dnsx to validate the results.
for word in $(cat wordlist.txt); do echo "support.$word.hackerone.com" >> generated.txt; done
cat generated.txt | dnsx

There is also a feature request in dnsx. You can subscribe to it in order receive a notification when it gets implemented.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by forgedhallpass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #646 on September 23, 2022 12:01.