Skip to content

visualize nmap xml output in a simple ordinated way

License

Notifications You must be signed in to change notification settings

YoruYagami/vizmap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 

Repository files navigation

VizMap

VizMap is a Python script designed to parse and visualize Nmap XML output in a matrix format. It allows users to filter and display information about hosts, services, and open ports detected by Nmap scans. This tool is particularly useful for quickly identifying specific services or operating systems across a network scan.

Features

  • OS Filtering: Filter hosts based on their detected operating systems (e.g., Windows).
  • Protocol Filtering: Focus on hosts with specific open ports (e.g., FTP, SSH, HTTP).
  • SQL Service Detection: Automatically detect common SQL services like MSSQL, MySQL, PostgreSQL, and more.
  • Custom Port Filtering: Specify a custom port to filter hosts.
  • ANSI Color Support: Colored output to differentiate between open and filtered ports.

Requirements

Install the required Python packages using pip:

pip install prettytable colorama

Usage

python vizmap.py <nmap_output.xml> [options]

Example Output

+-------------+-----------------+---------------------+----+----+----+----+-----+-----+------+------+------+------+
| 192.168.1.1 |   router.local  |     Linux 2.6.32    |    | 22 |    | 80 | 443 |     |      |      |      |      |
| 192.168.1.2 | webserver.local | Windows Server 2016 | 21 |    | 25 |    |     |     |      |      | 3306 |      |
| 192.168.1.3 |  dbserver.local |      Windows 10     |    |    |    |    |     | 445 | 1433 | 1434 |      | 3389 |
+-------------+-----------------+---------------------+----+----+----+----+-----+-----+------+------+------+------+

🤝 Contributing

Contributions are welcome! Please open an issue or submit a pull request.

📜 License

This project is licensed under the MIT License - see the LICENSE file for details.

About

visualize nmap xml output in a simple ordinated way

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages