Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/data/markdown_doc/auxiliary_scanner_template.erb
Views: 11766
This module is a scanner module, and is capable of testing against multiple hosts. ``` msf > use <%= mod.fullname %> msf <%= mod.type %>(<%= mod.shortname %>) > show options ... show and set options ... msf <%= mod.type %>(<%= mod.shortname %>) > set RHOSTS ip-range msf <%= mod.type %>(<%= mod.shortname %>) > exploit ``` Other examples of setting the RHOSTS option: Example 1: ``` msf <%= mod.type %>(<%= mod.shortname %>) > set RHOSTS 192.168.1.3-192.168.1.200 ``` Example 2: ``` msf <%= mod.type %>(<%= mod.shortname %>) > set RHOSTS 192.168.1.1/24 ``` Example 3: ``` msf <%= mod.type %>(<%= mod.shortname %>) > set RHOSTS file:/tmp/ip_list.txt ```