AutoRecon
AutoRecon copied to clipboard
AutoRecon is a multi-threaded network reconnaissance tool which performs automated enumeration of services.
AutoRecon v2.0.35 Installed via pipx. When running `sudo env "PATH=$PATH" autorecon -o 192.168.0.0/24` I get an error stating > [!] Error: There are no valid PortScan plugins in the plugins...
pretty much every scan i run hangs on smbmap and the process has to be manually killed. running the latest version of smbmap. appears to be an issue with smbmap...
Hey @Tib3rius, I have created a provisional Debian package for `autorecon` - per https://bugs.kali.org/view.php?id=7870. The following files and lines seem to annoy `apt`, where it displayed a `SyntaxWarning` highlighting that...
Is it normal for the enter key to get passed back to the running feroxbuster scan? This might be a feature that is documented somewhere, but I couldn't find information...
i've adjusted my config file to use 50 threads and only the common.txt wordlist which is a lot shorter. my scans still run for hours and often never finish at...
Hi, I'm running AutoRecon with ffuf. My config.toml contains: ``` # Configure plugin options here. [dirbuster] tool = 'ffuf' threads = 50 wordlist = ['/usr/share/seclists/Discovery/Web-Content/directory-list-2.3-medium.txt'] ext = "" ``` My...
If I scan an entire subnet, is there a way to have autorecon only create results for those scans that discover open ports?
Curl robots.txt always reports **There did not appear to be a robots.txt file in the webroot** dsepite having a non empty robots.txt in webroot. Is there something amiss here ```...
Hi I wanted to ask you if you could add a --user-agent argument because in bug bounty many times they ask you to put a certain user agent to know...
https://github.com/Tib3rius/AutoRecon/blob/1160474b2331879ee9de6c101026abb4d63cadd4/autorecon/main.py#L402C3-L402C3 ```python from impacket.dcerpc.v5 import transport from impacket.dcerpc.v5.rpcrt import RPC_C_AUTHN_LEVEL_NONE from impacket.dcerpc.v5.dcomrt import IObjectExporter target = f"ncacn_ip_tcp:{target.ip}" rpcTransport = transport.DCERPCTransportFactory(target) portmap = rpcTransport.get_dce_rpc() portmap.set_auth_level(RPC_C_AUTHN_LEVEL_NONE) portmap.connect() obj = IObjectExporter(portmap) bindings =...