You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
command -v gem >/dev/null 2>&1|| { echo"Error: RubyGems (gem) is not installed or not in PATH. Please install Ruby/RubyGems before installing WPScan.">&2;exit 1; }
23
-
gem install wpscan || { echo"Error: Failed to install WPScan via gem. For troubleshooting, rerun with 'gem install wpscan --verbose' and consult the official RubyGems or WPScan documentation.">&2;exit 1; }
24
23
25
24
print_install_banner "WPScan"
25
+
# Always download the latest version of WPScan. Never source a specific version
26
+
gem install wpscan || { echo"Error: Failed to install WPScan via gem. For troubleshooting, rerun with 'gem install wpscan --verbose' and consult the official RubyGems or WPScan documentation.">&2;exit 1; }
0 commit comments