Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
sdwan-harvester — 🌐 Automatically enumerate and fingerprint SD-WAN nodes on the internet | Kitploit
Tools/GitHubGitHub/sdnewhop/sdwan-harvester
OSINT (Open Source Intelligence)ReconnaissanceVulnerability ScannersNetwork MappingPort ScanningVulnerability AnalysisInformation Gathering
GitHubsdnewhop/sdwan-harvester

sdwan-harvester

🌐 Automatically enumerate and fingerprint SD-WAN nodes on the internet

View Repository
49105 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

SD-WAN Harvester

🌐 SD-WAN Internet Census Framework

Disclaimer

This project is no longer maintained. It is stable and you still can use it for SD-WAN scanning, but currently, more preferable and accurate way to scan different things on the internet (not only SD-WAN solutions) is to use our new Grinder Framework.

🔎 Grinder Framework

Contents

  1. Description
  2. Slides
  3. Requirements
  4. Installation
  5. Usage
    • Command Line Arguments
    • Examples

Description

SD-WAN Harvester tool was created to automatically enumerate and fingerprint SD-WAN nodes on the Internet. It uses Shodan search engine for discovering, NMAP NSE scripts for fingerprinting, and masscan to implement some specific checks.

Slides

  • SD-WAN Internet Census. Zero Nights 2018

Requirements

SD-WAN Harvester requires Python 3.6 or later and Nmap.

You also need an Shodan API key.

Installation

  1. Clone the repository:
root@kitploit:~
git clone https://github.com/sdnewhop/sdwan-harvester.git
  1. Install pip requirements:
root@kitploit:~
python3.6 -m pip install -r requirements.txt
  1. Run the script:
root@kitploit:~
python3.6 harvester.py -h
  1. Set your Shodan key via a command line argument
root@kitploit:~
./harvester.py -sk YOUR_SHODAN_KEY

or via an environment variable

root@kitploit:~
export SHODAN_API_KEY=YOUR_API_KEY_HERE
./harvester.py (without -sk key)

Usage

Command Line Arguments

  1. -h, --help - show the help message and exit.

  2. -sk SHODAN_KEY, --shodan-key SHODAN_KEY - set a Shodan API key.

  3. -n, --new - initiate a new discovery using Shodan.

  4. -q QUERIES, --queries QUERIES - specify the file containing SD-WAN queries and filters for Shodan. Default value is shodan_queries.json.

  5. -d DESTINATION, --destination DESTINATION - the directory where results will be stored. Default value is results.

  6. -C CONFIDENCE, --confidence CONFIDENCE - set the confidence level (certain, firm, or tentative).
    Default value is certain.

Examples

Show help

root@kitploit:~
python3.6 harvester.py -h

Run an enumeration

root@kitploit:~
python3.6 harvester.py -sk YOUR_API_KEY -n

Run an enumeration with firm level of confidence

root@kitploit:~
python3.6 harvester.py -sk YOUR_API_KEY -n -c firm

Run a vulnerability scan against talari vendor

root@kitploit:~
python3.6 harvester.py -sk YOUR_API_KEY -n -v talari

Run a new vulnerability scan for all vendors. The Maximum Number of Vendors is 8, the Maximum Number of Countries is 8, and the Maximum Number of CVEs is 8

root@kitploit:~
python3.6 harvester.py -sk YOUR_API_KEY -n -v all -mv 8 -mc 8 -maxv 8

Run a new scan with all features enabled

root@kitploit:~
python3.6 harvester.py -sk YOUR_API_KEY -n -v all -c all

Process data from previous scan results (for example, if you want to build new charts and graphics containing fewer vendors, countries, or vulners.)

root@kitploit:~
python3.6 harvester.py -v -mv <num> -mc <num> -maxv <num>
Download Tool
  • -v [VULNERS [VULNERS ...]], --vulners [VULNERS [VULNERS ...]] - the list of venodrs checked by Shodan vulnerability scanner. For example, --- vulners silver peak, arista, talari command starts finding of known vulnerabilities for silver peak, arista and talari products. Use --vulners all to run scanning for all vendors. By default, Shodan vulnerability scanning is turned off.

  • -mv MAX_VENDORS, --max-vendors MAX_VENDORS - the Maximum Number of Vendors shown in reports.
    Default value is 10.

  • -mc MAX_COUNTRIES, --max-countries MAX_COUNTRIES - the Maximum Number of Countries shown in reports. Default value is 10.

  • -maxv MAX_VULNERS, --max-vulners MAX_VULNERS - the Maximum Number of Vulnerabilities shown in reports.
    Default value is 10.

  • -u, --update-markers - Update map markers.