Incorrect clearing of wildcard subdomains. #72
Closed
Phoenix1112
started this conversation in
General
Replies: 3 comments 3 replies
-
Hi @Phoenix1112, Because wildcard checks are based on IPs rather than subdomain names, shuffledns prints only one subdomain linked with each wildcard IP in the results, and the others are eliminated. |
Beta Was this translation helpful? Give feedback.
2 replies
-
this is true. but the solution is simple. When cleaning *.api.drive.example.com it can be checked whether it has the same ip address. If the ip addresses of the subdomain test.api.drive.example.com and jddjjdjd.api.drive.example.com are not the same, it will not be cleaned. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
thanks for this project.
example:
drive.example.com
blabla1.drive.example.com
blabla2.drive.example.com
blabla3.drive.example.com
Imagine that the above subdomain addresses are in a list. When shuffledns cleans up the wildcard subdomains above, it also cleans drive.example.com. the real problem here is that the wildcard starts after *.drive.
shuffledns should only show this domain as a result. drive.example.com
The following are the wildcard subdomains that need to be deleted.
blabla1.drive.example.com
blabla2.drive.example.com
blabla3.drive.example.com
The http status codes of the above subdomain addresses were as follows.
drive.example.com 200
blabla1.drive.example.com 403
blabla2.drive.example.com 403
blabla3.drive.example.com 403
adksfdhjklsjkhldfkjhasdjklajklhasjkld.drive.example.com 403
so when clearing wildcards, you need to detect where the wildcard starts.
Here is a sample subdomain address for you to test.
games.mail.ru
blabla.games.mail.ru
api.games.mail.ru
Beta Was this translation helpful? Give feedback.
All reactions