Thanks Thanks:  0
Showing results 1 to 3 of 3

Thread: mscoree_CorExeMain

  1. #1
    Member Reputation: 253
    Join Date
    2008-01-10
    Posts
    322


    Wink mscoree_CorExeMain

    Dear Guys

    please any one have experience how can unpacking tools protected by corexemain.dll .

    BR

  2. # ADS
    Circuit advertisement
    Join Date
    Always
    Posts
    Many
     

  3. #2
    Member Reputation: 218
    Join Date
    2016-12-18
    Posts
    168


    1 out of 1 members found this post helpful.

    Default Re: mscoree_CorExeMain

    Hello atit,
    as far as I know _CorExeMain (and _CorDllMain) are standard entry points (well, a jmp to them to be precise) for .NET files.

    You can try to open your target in CFF Explorer and check if it's a .NET file and then with DnSpy just to analyze it better.

    - -

    I'm afraid I don't know (and never heard of) any "corexemain.dll" protection ... mind PM-ing me the target you're working on?

    Regards,
    Tony
    Last edited by tonyweb; 2017-04-09 at 05:20 PM

  4. #3
    Member Reputation: 107
    Join Date
    2017-02-25
    Posts
    65


    Default Re: mscoree_CorExeMain

    Yes! the above statement is correct-:

    The primary purpose of a .NET executable is to get the .NET-specific information such as metadata and intermediate language (IL) into memory. In addition, a .NET executable links against MSCOREE.DLL. This DLL is the starting point for a .NET process. When a .NET executable loads, its entry point is usually a tiny stub of code. That stub just jumps to an exported function in MSCOREE.DLL (_CorExeMain or _CorDllMain). From there, MSCOREE takes charge, and starts using the metadata and IL from the executable file. This setup is similar to the way apps in Visual Basic (prior to .NET) used MSVBVM60.DLL.

    Or visually-:



    ======
    If your aim is to unpack , plz try to scan the main executabe with a file analyzer(such as RDG Detector- download_here). Then , if any packer/protector detected then, try to clean it with de4dot(it MAY work) or simply post the results here

    BR
    Last edited by abhi93696; 2017-04-09 at 03:10 AM

Bookmarks

Bookmarks

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •