• 大小: 12.6MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-06-19
  • 语言: C#
  • 标签: C#实    软件加壳  

资源简介

C#实现软件加壳

资源截图

代码片段和文件信息

// DLL Control.cpp : Defines the entry point for the DLL application.
//

#include “stdafx.h“


BOOL APIENTRY DllMain( HMODULE hModule
                       DWORD  ul_reason_for_call
                       LPVOID lpReserved
 )
{
    return TRUE;
}

extern “C“ __declspec(dllexport) 
bool __stdcall MsgHandler( int MsgId
   char* MsgBody)
{
if (MsgId == -1) // This is the Initialization MsgID 
{
MessageBoxA(NULL “Protection Initialization“ “Message from DLL“ MB_OK | MB_ICONINFORMATION);
}
else if (MsgId == -2) // This is the Finalization MsgID 
{
MessageBoxA(NULL “Application is about to start“ “Message from DLL“ MB_OK | MB_ICONINFORMATION);
}
else
{
MessageBoxA(NULL MsgBody “Message from DLL“ MB_OK | MB_ICONINFORMATION);
}

// When we return “true“ we tell WinLicense that we have processed the message so WinLicense will not display
// the custom message 

return true;
}
 



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        699  2014-04-22 16:07  themida\custom_vms\cisc32.vm

     文件        701  2014-04-22 16:07  themida\custom_vms\cisc64.vm

     文件       1784  2014-04-22 16:07  themida\custom_vms\fish32_black.vm

     文件       1780  2014-04-22 16:07  themida\custom_vms\fish32_red.vm

     文件       1779  2014-04-22 16:07  themida\custom_vms\fish32_white.vm

     文件       1784  2014-04-22 16:07  themida\custom_vms\fish64_black.vm

     文件       1780  2014-04-22 16:07  themida\custom_vms\fish64_red.vm

     文件       1779  2014-04-22 16:07  themida\custom_vms\fish64_white.vm

     文件       3288  2014-04-22 16:07  themida\custom_vms\puma32_black.vm

     文件       3283  2014-04-22 16:07  themida\custom_vms\puma32_red.vm

     文件       3282  2014-04-22 16:07  themida\custom_vms\puma32_white.vm

     文件       3287  2014-04-22 16:07  themida\custom_vms\puma64_black.vm

     文件       3282  2014-04-22 16:07  themida\custom_vms\puma64_red.vm

     文件       3283  2014-04-22 16:07  themida\custom_vms\puma64_white.vm

     文件        702  2014-04-22 16:07  themida\custom_vms\risc32.vm

     文件        702  2014-04-22 16:07  themida\custom_vms\risc64.vm

     文件       3292  2014-04-22 16:07  themida\custom_vms\shark32_black.vm

     文件       3285  2014-04-22 16:07  themida\custom_vms\shark32_red.vm

     文件       3283  2014-04-22 16:07  themida\custom_vms\shark32_white.vm

     文件       3292  2014-04-22 16:07  themida\custom_vms\shark64_black.vm

     文件       3285  2014-04-22 16:07  themida\custom_vms\shark64_red.vm

     文件       3284  2014-04-22 16:07  themida\custom_vms\shark64_white.vm

     文件        112  2015-01-01 16:57  themida\custom_vms\Themida.url

     文件       2029  2014-04-22 16:07  themida\custom_vms\tiger32_black.vm

     文件       2025  2014-04-22 16:07  themida\custom_vms\tiger32_red.vm

     文件       2025  2014-04-22 16:07  themida\custom_vms\tiger32_white.vm

     文件       2062  2014-04-22 16:07  themida\custom_vms\tiger64_black.vm

     文件       2059  2014-04-22 16:07  themida\custom_vms\tiger64_red.vm

     文件       2057  2014-04-22 16:07  themida\custom_vms\tiger64_white.vm

     文件     116116  2007-05-09 10:20  themida\languages\arabic.lng

............此处省略255个文件信息

评论

共有 条评论