banner
andrewji8

Being towards death

Heed not to the tree-rustling and leaf-lashing rain, Why not stroll along, whistle and sing under its rein. Lighter and better suited than horses are straw sandals and a bamboo staff, Who's afraid? A palm-leaf plaited cape provides enough to misty weather in life sustain. A thorny spring breeze sobers up the spirit, I feel a slight chill, The setting sun over the mountain offers greetings still. Looking back over the bleak passage survived, The return in time Shall not be affected by windswept rain or shine.
telegram
twitter
github

Lazy Hunter Deep Dive Analysis: Making Vulnerability Scanning Simple and Efficient

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.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.