LazyHunter: The Simplest and Most Efficient Automation Vulnerability Recon Tool#
LazyHunter is an automated reconnaissance tool designed specifically for vulnerability hunters, cleverly combining the functionalities of Shodan's InternetDB and CVEDB API. It intelligently retrieves open ports, hostnames, tags, and potential vulnerabilities for specified IP addresses, and delves into CVE details, including affected products and CVSS scores. The results are presented in a color-coded format, making risk analysis clear at a glance.
Address: https://github.com/iamunixtz/Lazy-Hunter
Core Highlights#
- One-click retrieval of open ports, hostnames, and associated vulnerabilities for an IP address
- In-depth extraction of CVE details and severity levels
- Color-coded output for intuitive risk identification
- Supports batch input from files (-f) and result saving (-o)
- Provides options for displaying CVE and open port combinations
Installation Guide#
Clone the Code Repository#
git clone https://github.com/iamunixtz/Lazy-Hunter.git
cd Lazy-Hunter
Install Necessary Dependencies#
pip install -r requirements.txt
Run the Tool#
python lazyhunter.py --help
View Help Menu for Command Usage#
python lazyhunter.py -h
Scan a Single IP#
python lazyhunter.py --ip 192.168.1.1
Batch Scan IP List from a File#
python lazyhunter.py -f targets.txt
Display Only CVE Vulnerabilities#
python lazyhunter.py --ip 192.168.1.1 --cves
Display Only Open Ports#
python lazyhunter.py --ip 192.168.1.1 --ports
Display Only Hostname#
python lazyhunter.py --ip 192.168.1.1 --host
Display Both CVE and Port Information#
python lazyhunter.py --ip 192.168.1.1 --cve+ports
Display All Results (Default Behavior)#
python lazyhunter.py --ip 192.168.1.1
LazyHunter makes the reconnaissance work of vulnerability hunters easy and efficient, allowing for one-click retrieval of key information to help you achieve more with less effort in the field of cybersecurity. Whether for single IP detection or batch scanning, it presents risks in an intuitive manner, assisting security experts in quickly identifying potential threats.