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
Project-Deep-Focus — Asynchronous network reconnaissance engine for large-scale service discovery and fingerprinting. Identifies unsecured services (RTSP cameras, VNC, FTP) and provides real-time terminal dashboard with authentication status detection. | Kitploit
Tools/GitHubGitHub/y0oshi/project-deep-focus
OSINT (Open Source Intelligence)ReconnaissanceIoT SecurityNetwork MappingPort ScanningVulnerability AnalysisInformation GatheringPenetration TestingRed Teaming
GitHuby0oshi/project-deep-focus

Project-Deep-Focus

Asynchronous network reconnaissance engine for large-scale service discovery and fingerprinting. Identifies unsecured services (RTSP cameras, VNC, FTP) and provides real-time terminal dashboard with authentication status detection.

2322217 months 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
View Repository

Deep Focus

A high-performance network reconnaissance tool for discovering and fingerprinting services across IP ranges. Built for security researchers and network administrators.

Deep Focus Demo


Table of Contents

  1. Overview
  2. Features
  3. Requirements
  4. Installation
  5. Usage
  6. Configuration
  7. Understanding Export Logs
  8. Target Selection Guide
  9. Troubleshooting
  10. License

Overview

Deep Focus is an asynchronous network scanner designed for large-scale service discovery. It performs intelligent probing of common network services and provides detailed authentication status information for each discovered service. You can consider it your personal mini Shodan.

The tool is optimized for passive cooling systems (such as Apple M-series laptops) with built-in thermal management that automatically throttles scanning when system load is high.

Key Capabilities

  • Scans IP ranges for open services (HTTP, FTP, SSH, VNC, RTSP, RDP)
  • Identifies authentication requirements for discovered services
  • Fingerprints service types and vendors
  • Exports actionable intelligence in structured format
  • Manages system resources to prevent overheating

Features

Service Probes

Authentication Detection

The tool specifically identifies services that may be accessible without credentials:

  • VNC: Detects "None" authentication type (passwordless access)
  • FTP: Tests anonymous login capability
  • RTSP: Identifies cameras without authentication requirements
  • MQTT: Sends CONNECT handshake to detect open brokers (No-Auth)

Thermal Management

Built-in governor monitors system load and automatically pauses scanning when thresholds are exceeded, preventing thermal throttling on passively-cooled systems.


Requirements

  • Python 3.8 or higher
  • macOS, Linux, or Windows
  • Network access to target ranges

Installation

Quick Start (Recommended)

Deep Focus comes with automated installers for all major platforms.

  1. Download and Enter Directory:

    root@kitploit:~
    git clone https://github.com/Y0oshi/Project-Deep-Focus.git
    cd Project-Deep-Focus
    
  2. Run Installer:

    • macOS / Linux: ./install.sh
    • Windows: .\install.bat
  3. Launch: Restart your terminal, then type:

    root@kitploit:~
    deepfocus
    

That's it! You can now run the tool from anywhere.


Manual Installation (Optional)

If you prefer to configure everything yourself:

  1. ensure python 3.8+ is installed.
  2. create a virtual environment: python3 -m venv venv
  3. activate it: source venv/bin/activate
  4. install packages: pip install rich aiosqlite
  5. run: python3 deep_focus.py

Usage

Starting the Tool

root@kitploit:~
deepfocus

Available Commands

CommandDescription
/scanStart scanning and open the live dashboard
/stopStop scanning and export results

Basic Workflow

  1. Launch the tool with python deep_focus.py
  2. Configure target network with /settings (Option 1)
  3. Adjust scan speed if needed with /settings (Option 3)
  4. Start scanning with /scan
  5. Monitor progress in the live dashboard
  6. Press Ctrl+C to detach from dashboard (scanning continues)
  7. Use /stop to halt scanning and export results

Configuration

Access configuration menu with /settings:

Option 1: Target Network

Specify the IP range to scan in CIDR notation.

root@kitploit:~
Example: 192.168.1.0/24 (256 IPs)
Example: 10.0.0.0/16 (65,536 IPs)

Option 2: Power Level (10-100%)

Controls thermal limits. Higher values allow more aggressive scanning but increase heat generation.

Power LevelMax System LoadRecommended For
10-30%LowLaptops on battery
40-60%MediumNormal operation
70-100%HighDesktop systems with active cooling

Option 3: Scan Speed (100-1000 threads)

Controls concurrent connection attempts.

SpeedThreadsNotes
100-300ConservativeRecommended for home routers
300-600OptimalBest balance of speed and stability
600-1000AggressiveMay cause router overload or heat issues

Warning: Speeds above 600 threads may cause router instability or system overheating.

Option 4: Export Path

Directory where scan results will be saved.


Understanding Export Logs

Export files are saved as text files with the naming convention:

root@kitploit:~
deep_focus_export_[timestamp].txt

Log Entry Format

Each discovered service is recorded with the following structure:

root@kitploit:~
IP: 192.168.1.100
Port: 21
Service: ftp
banner: 220 FTP Server Ready | Auth: [Anonymous Access ALLOWED]
--------------------

Field Descriptions

FieldDescription
IPTarget IP address
PortService port number
ServiceIdentified service type
bannerService response and authentication status

Authentication Status Indicators

FTP (Port 21)

StatusMeaning
Anonymous Access ALLOWEDServer accepts anonymous login
Anonymous User RejectedAnonymous login disabled
Encryption Required (AUTH TLS)TLS required before authentication

VNC (Port 5900)

StatusMeaning
None (OPEN)No password required
VNC AuthPassword authentication required
VeNCrypt (TLS)TLS encryption required

RTSP (Port 554)

StatusMeaning
No Auth Required (OPEN)Stream accessible without credentials
Auth RequiredCredentials needed
ForbiddenAccess denied

Camera brands are identified when possible: Hikvision, Dahua, Axis, Foscam, Amcrest, Reolink, Ubiquiti.

SSH (Port 22)

TypeMeaning
OpenSSH X.XStandard OpenSSH server
Dropbear (Embedded/IoT)Lightweight SSH, often on IoT devices

RDP (Port 3389)

StatusMeaning
RDP (CredSSP/NLA Required)Network Level Auth - most secure
RDP (TLS Security)

Target Selection Guide

The included targets.json file contains a curated list of high-value IP ranges organized by provider and region. You can open this file to find tested IP ranges for various discovery goals.

Each entry in targets.json includes:

  • Provider name
  • Description of typical findings
  • IP ranges in CIDR notation

Range Categories

CategoryTypical Findings
Cloud Providers (Hetzner, OVH, Vultr)Web servers, dashboards, FTP, VNC
Budget Hosting (Contabo)Forgotten servers, misconfigured services
Residential ISPs (Korea, Taiwan, China)IoT devices, cameras, NAS drives

Recommended Targets by Goal

GoalRecommended Providers
FTP/SSH DiscoveryContabo, Hetzner, OVH
Camera DiscoveryKorea Telecom, Taiwan HiNet, China Telecom
VNC AccessVultr, DigitalOcean, Contabo

Troubleshooting

Scanner stops responding

The thermal governor may have paused scanning. Check system load and wait, or reduce power level in settings.

Low discovery rate

  • Verify target range has active hosts
  • Check network connectivity
  • Some ranges may be heavily firewalled

Router becomes unstable

Reduce scan speed to 300-400 threads. High thread counts can overwhelm consumer routers.

Permission errors on export

Verify the export path exists and is writable.


License

This tool is provided for authorized security testing and network administration only. Users are responsible for ensuring compliance with applicable laws and regulations.


Author

Made by Y0oshi | Instagram: @rde0

Download Tool
ServicePortDetection Capabilities
HTTP/HTTPS80, 443, 8080, 8443Server type, TLS cipher, cert issuer, self-signed detection
FTP21Anonymous access detection
SSH22Version, key exchange, ciphers, MACs, host keys
Telnet23Banner grabbing for routers/IoT
SMTP25, 587STARTTLS detection, TLS cipher suite
VNC5900Authentication type (None, Password, TLS)
RTSP554Camera brand, authentication status
LDAPS636TLS cipher, cert info, self-signed detection
MQTT1883Broker access (No-Auth detection)
RDP3389Security mode detection (NLA, TLS, Legacy)
/settings
Configure scan parameters
/exitExit the application
MikroTik RouterMikroTik network equipment
Cisco IOSCisco network device
TLS encryption enabled
RDP (Standard RDP Security)Legacy encryption only
RDP (Legacy/No NLA)Old server, no modern auth