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
Home-Network-Vulnerability-Assessment — Auditoría de seguridad y análisis de vulnerabilidades (CVE-2014-3566 y CVE-2010-2333) en la infraestructura de red local y router residencial. | Kitploit
Tools/GitHubGitHub/jmonge12/home-network-vulnerability-assessment
Vulnerability ScannersNetwork MappingPort ScanningVulnerability AnalysisNetwork SecurityLearning & EducationLabs & Practice
GitHubjmonge12/home-network-vulnerability-assessment

Home-Network-Vulnerability-Assessment

Auditoría de seguridad y análisis de vulnerabilidades (CVE-2014-3566 y CVE-2010-2333) en la infraestructura de red local y router residencial.

View Repository
53 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Home-Network-Vulnerability-Assessment

Security audit and vulnerability analysis (CVE-2014-3566 and CVE-2010-2333) on the local network infrastructure and residential router.

Security Audit and Vulnerability Analysis on Residential Router

Project Description

This project documents a perimeter security audit performed autonomously on a residential local network. The objective was to identify open ports on the router gateway, map active services through version detection, and assess the presence of critical vulnerabilities using the Nmap Scripting Engine (NSE).

Methodology and Tools

  • Scanning Tool: Nmap (Network Mapper) v7.98.
  • Assessment Target: Residential router / Gateway (192.168.100.1).
  • Approach: Black Box audit from the LAN.

Lab Phases and Results

1. Initial Service Discovery

A quick scan with version detection was executed to map the exposed entry points of the device:

nmap -sV -F 192.168.100.1

Initial Port Scan

Through this command, active services were detected on ports 53/tcp (domain), 80/tcp (http), and a Cisco-Linksys UPnP pairing service on port 49152/tcp.


2. Detection of Critical SSL POODLE Vulnerability (CVE-2014-3566)

To audit the security of encrypted connections on the router's web administration ports, the specialized script in the SSL cryptographic suite was launched:

nmap -p 443 --script ssl-poodle 192.168.100.1

Evidence of SSL POODLE Vulnerability Nmap

The Nmap Scripting Engine (NSE) determined that the device's web server is VULNERABLE to protocol downgrade attacks under identifier CVE-2014-3566 (POODLE). This flaw occurs because the router's firmware accepts connections using the obsolete SSLv3 protocol configured with block cipher in CBC mode (Cipher Block Chaining).


3. Web Attack Surface Enumeration (CVE-2019-1653 and others)

Deep inspection using the --script vuln category continued evaluating the router's HTTP interface, exposing a massive listing of paths prone to information leakage, directory traversal vulnerabilities, and exposed authentication panels.

Information Leakage and Web Enumeration

The Nmap NSE engine confirmed that the device is LIKELY VULNERABLE to the POODLE side-channel attack (CVE-2014-3566) due to the acceptance of connections under the obsolete SSLv3 protocol with CBC encryption.

Download Tool