View Single Post
  #1  
Old 06-10-2026, 03:17
CodeCracker CodeCracker is offline
VIP
 
Join Date: Jun 2011
Posts: 912
Rept. Given: 70
Rept. Rcvd 663 Times in 279 Posts
Thanks Given: 66
Thanks Rcvd at 3,831 Times in 720 Posts
CodeCracker Reputation: 500-699 CodeCracker Reputation: 500-699 CodeCracker Reputation: 500-699 CodeCracker Reputation: 500-699 CodeCracker Reputation: 500-699 CodeCracker Reputation: 500-699
MixedAssemblyLoader v5

MixedAssemblyLoader_v5.rar
- source code C#

What's new: - Added 64 bits support;

But you would need to set "32 bits required" for 32 bits assemblies;
and unset "32 bits required" for 64 bits assemblies;

Example of usage:
Program.cs
namespace MixedAssemblyLoader
{
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Mixed assembly loader!");
string filename = "D:\\CFlowKiller.exe";
Assembly asm = LoadMixedAssembly(filename);
//Console.ReadKey(true);
}

All you need is to pass file name (string) to LoadMixedAssembly method.
Attached Files
File Type: rar MixedAssemblyLoader_v5.rar (27.4 KB, 6 views)
Reply With Quote
The Following User Says Thank You to CodeCracker For This Useful Post:
wilson bibe (06-10-2026)