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
- 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 12 matches

by Dhanush
2014-07-02 11:30
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

below is the WriteMessageOnScreen(char * tt,BYTE *scrBuff, UINT scrBuffSize) function. I dont see it writing to the UAC anywhere. Please help! ********************************************************************************************* void vncDesktop::WriteMessageOnScreen(char * tt,BYTE *scrBuff ...
by Dhanush
2014-07-01 06:58
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

I am able to mask my bitmap with the contents of the "databuf" buffer and view the output in an image file saved on a disk. but the problem is databuf contents are not being sent to the viewer.
by Dhanush
2014-07-01 06:42
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

the control while debugging never enters the function - void vncDesktop::WriteMessageOnScreen(char * tt,BYTE *scrBuff, UINT scrBuffSize)
so making changes there is not helping.
by Dhanush
2014-06-30 06:54
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

Yeah, thats exactly what I want to do. So I have to replace the m_membitmap with the bitmap I want to load right? ****************************************************************************** vncDesktop::WriteMessageOnScreen(char * tt,BYTE *scrBuff, UINT scrBuffSize) { // Select the memory bitmap ...
by Dhanush
2014-06-27 05:44
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

In which part of the code is the difference taken(between m_mainbuf and m_backbuff) ? so that I can mask the contents of m_mainbuf and the bitmap stored on the disk.
by Dhanush
2014-06-26 10:08
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

Since the m_mainbuff has the copy of the server screen, I want to mask(merge) the copy of the the server screen with a bitmap stored on the disk. In which part of the source code can I perform this action? i.e since there are several references to m_mainbuff where do I get hold of the copy of the ...
by Dhanush
2014-06-20 06:59
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

In which part of the source code is the the bitmap buffer(having the server screen) sent back to the viewer?
by Dhanush
2014-06-11 04:45
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

Is there an API from which I can convert the m_backbuff to a bitmap file? so that I can view what exactly m_backbuff holds at a particular point of time.
Also what are m_ScaledBuff and m_mainbuff used for?
by Dhanush
2014-06-04 05:50
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

This is the scene now, I have created a bitmap of the screen with the data blurred using an external applicaiton,which I have created. Now all I want to do is "AND" (bit multiplication) this bitmap with the original bitmap created by the uVNC server. After the bits are multiplied, the bitmap is sent ...
by Dhanush
2014-06-03 11:20
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

thanks for the replies! Now I am in the last step of what I want to acheive. All I need is to get the bitmap of the screen at the winvnc.sln file.
Since the uVNC server creates a bitmap of the server screen, I need to know where in winvnc.sln will I get hold of the bitmap object?
by Dhanush
2014-04-23 10:24
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Re: Data hiding

when the server copies the screen interms of small rectangles into the buffers to send to the client/viewer, it should be able to get the co-ordiantes of the textfields and blurr its content. Now the blurred content should be visible at the client side.
by Dhanush
2014-04-16 06:38
Forum: Feature requests
Topic: Data hiding
Replies: 22
Views: 33846

Data hiding

I want data hiding to be apart of UltraVNC i.e. when the remote client is connected to the server some of the priviliged information on the server(for example details about a person should be blurred) should not be visible to the client. Is there an API to acheive this? If not, What are the other ...