Tib3rius / AutoRecon

AutoRecon is a multi-threaded network reconnaissance tool which performs automated enumeration of services.
GNU General Public License v3.0
5.13k stars 876 forks source link

Output path of manual commands are not inline with automatic commands #114

Closed kehrijksen closed 3 years ago

kehrijksen commented 3 years ago

Output from automatic scans are put in directories according to their ports. For instance: scans/tcp80/tcp_80_http_curl.html scans/tcp80/tcp_80_http_feroxbuster_big.txt

Now the manual commands for the same service have their output paths set to the scans directory, such as: scans/tcp_80_http_nikto.txt scans/tcp_80_http_wpscan.txt

My solution, make it consistent and set it to: scans/tcp80/tcp_80_http_nikto.txt scans/tcp80/tcp_80_http_wpscan.txt

Tib3rius commented 3 years ago

This is definitely a bug, I'll make sure to fix in the next release. Thank you!

kehrijksen commented 3 years ago

Maybe you could also remove the prefix now then: scans/tcp80/tcp_80_http_nikto.txt scans/tcp80/tcp_80_http_wpscan.txt

Can become: scans/tcp80/http_nikto.txt scans/tcp80/http_wpscan.txt

Or: scans/tcp80/nikto.txt scans/tcp80/wpscan.txt

Tib3rius commented 3 years ago

Unfortunately that wouldn't work if the port directories are disabled (which is an option) as it could lead to files overwriting each other. At some point I may just remove the ability to disable port directories though.