Closed ikstream closed 1 year ago
what about this:
--rescan
option the given hosts/ports/services are re-scanned --overwrite_results
flagthe parameters for --rescan
are as followed:
<host>[:<port>[/<protocol>][:<service>]] [...]
If I have like 20 hosts that would need an smb rescan, because I forgot to change the enum4linux-ng command this sounds quite tedious to me
then how about using *
if you don't want to specify a particular host/protocol/service?
--rescan *:*:http localhost:udp:* vulnerable.lan:*:*
Let me put it in my own words to see if I understand your idea correctly.
*:*:http
would mean rescan all http tagged portslocalhost:udp:*
scan all UDP services on localhostvulnerable.lan:*:*
Rescan all services on vulnerable.lan
Always related to the content of the provided xml file of course.If that's correct it sounds like a great solution to me.
yeah, that was exactly what i have meant :raised_hands:
awesome! let me get to it :smile:
It would be great to have an option to rescan individual services.
If a single service's scans are botched for what ever reason I would like to rescan theses services. If we use the
--overwrite
flag we would rescan all services on all hosts, which might be very time and resource intense. Therefore something like below would be desirable in my opinion.e.g.:
One could delete the result files, but this might lead to fat fingering the deletion of additional files. This Could be combined with overwrite and used as
--single-scan
or something instead where only the provided services are scanned by recon, which might be the better option.BR