Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: 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://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

blacklist timeout increase

Developers may discuss here
Post Reply
szymon.nowak
20
20
Posts: 52
Joined: 2011-12-09 22:21

blacklist timeout increase

Post by szymon.nowak »

where can I find the line corresponding to the increase of time after a failed login attempt (blacklist )

I found a lot of lines in the file vncserver.cpp but abolished know which corresponds to
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: blacklist timeout increase

Post by Rudi De Vos »

todo, just to put mssg back ontop
User avatar
Rudi De Vos
Admin & Developer
Admin & Developer
Posts: 6832
Joined: 2004-04-23 10:21
Contact:

Re: blacklist timeout increase

Post by Rudi De Vos »

search for _lastRefTime

if ((now.QuadPart - current->_lastRefTime.QuadPart) > 0)
current->_lastRefTime.QuadPart = now.QuadPart + 10; <<<< max this bigger or

You can replace it by, that's how i made a little change in source.
Replaced
current->_lastRefTime.QuadPart = now.QuadPart + 10;
By
current->_lastRefTime.QuadPart = now.QuadPart + 10*current->_failureCount;

Timeout now increase for each wrong password
Post Reply