VNC

Virtual Network Computing

Enum with MSF:

msf > use auxiliary/scanner/vnc/vnc_none_auth
msf > set RHOSTS file:vnc.txt
msf > set THREADS 25
msf > run

TightVNC

Decrypt TightVNC password with MSF:

msf > irb
>> fixedkey = "\x17\x52\x6b\x06\x23\x4e\x58\x07"
=> "\u0017Rk\u0006#NX\a"
>> require 'rex/proto/rfb'
=> true
>> Rex::Proto::RFB::Cipher.decrypt ["f0f0f0f0f0f0f0f0"].pack('H*'), fixedkey
=> "<DECRYPTED>"

Last updated