You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WinPasswdValidator.cxx 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /* Copyright (C) 2005-2006 Martin Koegler
  2. * Copyright (C) 2006 OCCAM Financial Technology
  3. * Copyright (C) 2010 TigerVNC Team
  4. *
  5. * This is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This software is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this software; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
  18. * USA.
  19. */
  20. #include <rfb/WinPasswdValidator.h>
  21. #include <windows.h>
  22. #include <tchar.h>
  23. using namespace rfb;
  24. // This method will only work for Windows NT, 2000, and XP (and possibly Vista)
  25. bool WinPasswdValidator::validateInternal(rfb::SConnection* sc,
  26. const char* username,
  27. const char* password)
  28. {
  29. TCHAR* user = (TCHAR*) strDup(username);
  30. TCHAR* pass = (TCHAR*) strDup(password);
  31. TCHAR* domain = (TCHAR*) strDup(".");
  32. HANDLE handle;
  33. BOOL ret = LogonUser(user, domain, pass, LOGON32_LOGON_NETWORK,
  34. LOGON32_PROVIDER_DEFAULT, &handle);
  35. delete [] user;
  36. delete [] pass;
  37. delete [] domain;
  38. if (ret != 0) {
  39. CloseHandle(handle);
  40. return true;
  41. }
  42. return false;
  43. }