Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

Search found 14 matches

by splintercode
2024-03-15 13:15
Forum: DSM plugin
Topic: source SecureVNCPlugin.dsm
Replies: 8
Views: 51070

Re: source SecureVNCPlugin.dsm

Hello,

I have read that the source of SecureVNCPlugin.dsm is present on a separate git.

Is it possible to have access to this git? I need of the last source code of SecureVNCPlugin.dsm.

Thank you very much.
by splintercode
2020-03-26 08:57
Forum: DSM plugin
Topic: SecureVNC plugin 2.4.0.0 info
Replies: 2
Views: 32286

Re: SecureVNC plugin 2.4.0.0 info

Thank you mr. Rudi But during the creation of the private key >> openssl genrsa -des3 -out private.pem 2048 which passphrase is used? The same password that I typed during the creation of the public/private key, from the plugin configuration mask? I have tried compiling the source of WinVnc ...
by splintercode
2020-03-25 16:23
Forum: DSM plugin
Topic: SecureVNC plugin 2.4.0.0 info
Replies: 2
Views: 32286

SecureVNC plugin 2.4.0.0 info

Hello, I need some clarifications about SecureVNC plugin 2.4.0.0. I have done some test, but I don't understand some elements. - The client authentication keys, *Server_ClientAuth.pubkey and *Viewer_ClientAuth.pkey will be used by the server to authenticate the client. OK, but usually during the ...
by splintercode
2020-03-12 10:33
Forum: Developer discussions (mainly user-mode)
Topic: vncViewer 1.2.4.0 ABORT on CHAT
Replies: 7
Views: 28036

Re: vncViewer 1.2.4.0 ABORT on CHAT

Hi to all, I have verified that the code from if (_snprintf(_this->m_szRemoteName,MAXNAMESIZE-1,"%s", _this->m_pCC->m_desktopName) < 0 ) on 20 of august of 2019 has been modified with this: if (_snprintf_s(_this->m_szRemoteName, TEXTMAXSIZE, MAXNAMESIZE-1,"%s", _this->m_pCC->m_desktopName) < 0 ...
by splintercode
2020-03-11 15:57
Forum: Developer discussions (mainly user-mode)
Topic: vncViewer 1.2.4.0 ABORT on CHAT
Replies: 7
Views: 28036

Re: vncViewer 1.2.4.0 ABORT on CHAT

Hello, Finally, I have corrected. I have changed the call to _snprintf on the TextChatDlgProc(), case WM_INITDIALOG BOOL CALLBACK TextChat::TextChatDlgProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ) { TextChat *_this = helper::SafeGetWindowUserData<TextChat>(hWnd); switch (uMsg) { case WM ...
by splintercode
2020-03-11 13:57
Forum: Developer discussions (mainly user-mode)
Topic: vncViewer 1.2.4.0 ABORT on CHAT
Replies: 7
Views: 28036

Re: vncViewer 1.2.4.0 ABORT on CHAT

Hello, I have tried to comment the call to _this->SendTextChatRequest(CHAT_OPEN); but unfortunately the CHAR cause the ABORT. I have tried to debug in single step, but VNCViewer go in ABORT on various part of the code sometime on this memset( &cf, 0, sizeof(CHARFORMAT) ); // Initialize structure ...
by splintercode
2020-02-13 11:30
Forum: Developer discussions (mainly user-mode)
Topic: vncViewer 1.2.4.0 ABORT on CHAT
Replies: 7
Views: 28036

vncViewer 1.2.4.0 ABORT on CHAT

The CHAT function on release 1.2.4.0 cause the vncviewer to abort! I have started from the latest source dated 10 february 21:09:16 from cyberfox123 - internal update projectfiles for new signing. Compiled with vstudio 2017. When I try to use CHAT, VncViewer go in abort. Debugging, the code stop on ...
by splintercode
2013-12-05 16:39
Forum: Olders
Topic: Dual Monitors Not Working - Crashes Too
Replies: 18
Views: 31643

Re: Dual Monitors Not Working - Crashes Too

Excuse me, in which function can I add your fixe codes? rect.tl.y = ((rect.tl.y < 0)?0:rect.tl.y); rect.br.y = ((rect.br.y < 0)?0:rect.br.y); rect.tl.x = ((rect.tl.x < 0)?0:rect.tl.x); rect.br.x = ((rect.br.x < 0)?0:rect.br.x); on the start of the function ScaledRect? So it correct it's value? Thank ...
by splintercode
2013-12-05 13:43
Forum: Olders
Topic: Dual Monitors Not Working - Crashes Too
Replies: 18
Views: 31643

Re: Dual Monitors Not Working - Crashes Too

here the value of rect on crash: rect.tl.x = -1280 rect.tl.y = -20 rect.br.x = 2560 rect.br.y = 1044 Yes, I am playing with the control panel monitor settings, changing the order of the monitors. I did not know, but with the mouse via drag and drop it is possible to change the order of the monitor ...
by splintercode
2013-12-05 08:20
Forum: Olders
Topic: Dual Monitors Not Working - Crashes Too
Replies: 18
Views: 31643

Re: Dual Monitors Not Working - Crashes Too

Oh, I would like to use UltraVnc to access remotely on a computer that has 2 video cards and each video cards has 2 monitors; so there are 4 monitors all the monitors has the same screen size resolution. And I have discovered that if I swich continuosely the monitors, sometimes winvnc will crash. I ...
by splintercode
2013-12-04 21:46
Forum: Olders
Topic: Dual Monitors Not Working - Crashes Too
Replies: 18
Views: 31643

Re: Dual Monitors Not Working - Crashes Too

Uhm, it is very interesting.

So I will wait for a correction?

I have another question: how many monitor VNC can handle? Only two? If I use on system with four monitor?

Thank you.
by splintercode
2013-12-04 16:59
Forum: Olders
Topic: Dual Monitors Not Working - Crashes Too
Replies: 18
Views: 31643

Re: Dual Monitors Not Working - Crashes Too

Hello, I'm still investigating on the crash problem of winvnc when mirror driver is installed and active, and changing continuosely monitor 1 to 2 and viceversa on Control Panel->All Control Panel Items->Display->Screen Resolution->Change the appearance of your display the machine where I am testing ...
by splintercode
2013-12-03 16:35
Forum: Olders
Topic: Dual Monitors Not Working - Crashes Too
Replies: 18
Views: 31643

Re: Dual Monitors Not Working - Crashes Too

Good evening. I think that the problem is on the mirror driver video. I have this problem when the mirror driver video is installed, and I change continuosly the monitor from 1 to 2 and viceversa; after 30 minute, but it also happens after a few minutes, the winvnc.exe is crashing with 0xC0000005 ...
by splintercode
2010-09-10 14:58
Forum: Olders
Topic: This version is vulnerable to a dll exploit
Replies: 12
Views: 34193

Re: This version is vulnerable to a dll exploit

Please, someone can say me where is the code of the patch? in which module/code is the patch?

I am looking on the source code, but I cannot find any reference or other element that permit to identify the correction;

thank you.