-
Notifications
You must be signed in to change notification settings - Fork 4
Other distributed applications
royharoush edited this page Jan 29, 2017
·
1 revision
This framework can be used to extend based on need of distributed VPS functions.
for example, let's say you want issue a nikto command from multiple systems.
you can construct the nikto commands into a file (nikto command per line):
nikto -Tuning x -Plugins "@@ALL" -o '.' -Format htm -C all -Display 1234DEPSV -host IP:Port
for scanner in $(cat scanners_IP ); do for scan in $(cat niktoScans); do pssh -o ./ -i $scanner -x "-oStrictHostKeyChecking=no" $scan;done;done
this should loop through the servers and assign them a nikto scan.