-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vhost mode #247
Comments
This mode is used to find certain vhosts on a domain so this is intended. Also, if you supply an IP address instead of a hostname how should that work? |
Ok I would suppose 3 examples from real live.
If I run
Example 2. Server
Example 3. Server
Yes I can find |
Thanks I will have a look into this |
#249 ? |
Hello.
It seems to me that it is not need to concatenate subdomains and url.
gobuster vhost -w subdomains.txt -u http://site.company.org/
It concatenates each
subdomain
withsite.company.org
=subdomain.site.company.org
. Then I expectedsubdomain.company.org
Actually it may be usefull only in one case when I need to discover subdomains in main domain:
gobuster vhost -w subdomains.txt -u http://company.org/
But very offten webservers may server many sites (subdomains) from variuos domain like a
subdomain.company.org
orsubdomain.old-company.org
.Also I can't use it if site hasn't active domain and has just IP:
gobuster vhost -w subdomains.txt -u http://1.2.3.4/
In result it will be
subdomain.1.2.3.4
it is stuff.Hovewer this web-server also could be contains old sites which names may be obtained from passive-dns.
I think that
gobuster vhost
don't need contatenatesub
+domain.com
. Each entry from subdomains.txt must be inserted in host header without any concatenation like a FQDN.Thank you.
The text was updated successfully, but these errors were encountered: