You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yo @tomnomnom , firstly I love how much you contribute to the community...
I wanted to inform you that there is an issue when using Assetfinder.
I used this command-
cat scope.txt | assetfinder | tee output.txt
In the scope.txt I wrote hackerone.com
As you can see in the above image that Assetfinder fetches out-of-scope subdomains when we try to run it with
cat scope.txt | assetfinder
This means that this tool will not work on multiple targets at once.
I am not sure that this behavior was expected....
If your tool was supposed to work on only 1 target then let me know.
Thanks ;)
The text was updated successfully, but these errors were encountered:
Also I wrote two domains in a file separated with newline and exected cat file | assetfinder and it worked fine, but results were mixed, so that probably is not your purpose.
But you can put your domains separating them with newline and use this command: while read domain; do assetfinder $domain; done < file
Also if you want to put each result in a separated file: while read domain; do assetfinder $domain > $domain.txt; done < file
This way each domain result will be put in a file named domain.txt.
Yo @tomnomnom , firstly I love how much you contribute to the community...
I wanted to inform you that there is an issue when using Assetfinder.
I used this command-
cat scope.txt | assetfinder | tee output.txt
In the scope.txt I wrote hackerone.com
As you can see in the above image that Assetfinder fetches out-of-scope subdomains when we try to run it with
cat scope.txt | assetfinder
This means that this tool will not work on multiple targets at once.
I am not sure that this behavior was expected....
If your tool was supposed to work on only 1 target then let me know.
Thanks ;)
The text was updated successfully, but these errors were encountered: