RapidScan is a tool built into Python that automates the process of scanning for vulnerabilities. It takes a URL as input and automatically runs multiple tools such as nikto, dnsscan, wafw00f, and fierce against the host. It currently supports 80 vulnerability tests. In this recipe, we will learn the usage of RapidScan to save time and automate vulnerability discovery.
Automating vulnerability detection using RapidScan
Getting ready
This tool is open source and available on GitHub at the link: https://github.com/skavngr/rapidscan.
How to do it...
Let's perform the...