Blog | G5 Cyber Security

Speed Up AutoRecon Scans

TL;DR

AutoRecon scans can take a long time. This guide shows you how to make them faster by limiting the scope, using fewer modules, and optimising your system.

1. Understand Why AutoRecon is Slow

AutoRecon performs many checks on a target. The more it does, the longer it takes. Common causes of slow scans include:

2. Limit the Scan Scope

The most significant impact on scan time is the number of targets. Focus your scans:

When running AutoRecon, specify your target using the -t or --target option:

autorecon -t example.com

3. Select Specific Modules

AutoRecon runs all modules by default. Choose only the ones relevant to your needs.

Example: To only run port scanning and banner grabbing:

autorecon -t example.com -m portscan,bannergrab

4. Optimise System Resources

AutoRecon is resource-intensive. Ensure your system can handle it.

5. Check Network Connectivity

A slow network connection will significantly increase scan time.

6. Use the --fast Option

The --fast option disables some less critical modules to speed up scans.

autorecon -t example.com --fast

7. Review AutoRecon Output Regularly

Monitor the scan progress and output. If it’s stuck on a particular module for an extended period, consider stopping the scan and investigating.

Exit mobile version