Eleven Years of Service
Posts: 55
Threads: 15
Points: 0NSP
[VB.Net] - Merge DLLs 07-06-2013, 09:54 PM
#1
Hey,
I've a VB program which needs a specific dll to work.
In my RAT server i like to include the dll.
How can I use the dll when adding to ressources is that possible?
Because I don't like to use ILMerge...
•
Eleven Years of Service
Posts: 349
Threads: 14
Points: 0NSP
RE: [VB.Net] - Merge DLLs 07-06-2013, 10:03 PM
#2
A self-extracting executable running in silent mode might be worth looking into if you can't find another way.
Avatars are for faggots.
•
Eleven Years of Service
Posts: 35
Threads: 7
Points: 0NSP
RE: [VB.Net] - Merge DLLs 07-06-2013, 10:17 PM
#3
If the program runs without the dll you can add it to resources then extract.
Else use .net reactor to do it..
•
Eleven Years of Service
Posts: 55
Threads: 15
Points: 0NSP
RE: [VB.Net] - Merge DLLs 07-06-2013, 10:29 PM
#4
What do you mean: "Use .net reactor"?
•
Eleven Years of Service
Posts: 35
Threads: 7
Points: 0NSP
RE: [VB.Net] - Merge DLLs 07-06-2013, 11:41 PM
#5
.Net Reactor is an obfuscator for .net assemblies.
Has embed and merged assemblies feature.
•
Eleven Years of Service
Posts: 1,195
Threads: 224
Points: 163NSP
RE: [VB.Net] - Merge DLLs 07-07-2013, 12:01 PM
#9
This still utilizes ILMerge to do the assembly merging. However, I'm not sure of another way you could do it. Depending on the DLL, you may be able to use a .NET reflector and get the functions from the assembly, and just include them in the program.
•