CyberDeathSicko / Web-Application-Security-Checklist

GNU General Public License v3.0
0 stars 1 forks source link

nikto wpscan #2

Open s-b-repo opened 8 months ago

s-b-repo commented 8 months ago

!/bin/bash

Prompt the user for the target IP address

read -p "Enter the target IP address: " target_ip

Run Nikto on the target IP

nikto -h "$target_ip"

Run WPScan on the target IP

wpscan --url "$target_ip"

s-b-repo commented 8 months ago

just setup nikto flags and wps flags

spybnd commented 3 months ago

Good job