owasp-amass / amass

In-depth attack surface mapping and asset discovery
https://owasp.org/www-project-amass/
Other
11.78k stars 1.86k forks source link

bugged output? #1035

Open marcelo321 opened 1 month ago

marcelo321 commented 1 month ago

I am running `amass enum -d -passive" command, and sometimes I get outut like:

sub
sub2
sub3

but sometimes the same command gives output like this:


events-test.asana.com (FQDN) --> a_record --> 18.67.65.7 (IPAddress)
events-test.asana.com (FQDN) --> a_record --> 18.67.65.58 (IPAddress)
events-test.asana.com (FQDN) --> a_record --> 18.67.65.60 (IPAddress)

any idea why? I just want to print subdomains only.

mzpqnxow commented 1 month ago

Is this occurring on the same system or two different systems?

Just a guess, you may have a user or global configuration file on one system that is specifying the more verbose format

I don't recall the config file search path, but you check for the directory ~/config/amass as a start

You could also try something like this to see what files are being opened to help find it:

strace -e open -f /path/to/amass ... args 2>&1 | grep -Fv .so