Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


[VB.Net] - Merge DLLs filter_list
Author
Message
[VB.Net] - Merge DLLs #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...

Reply

RE: [VB.Net] - Merge DLLs #2
A self-extracting executable running in silent mode might be worth looking into if you can't find another way.
[Image: tumblr_m73y8go3jd1rb7u8co1_500.gif]
Avatars are for faggots.

Reply

RE: [VB.Net] - Merge DLLs #3
If the program runs without the dll you can add it to resources then extract.
Else use .net reactor to do it..

Reply

RE: [VB.Net] - Merge DLLs #4
What do you mean: "Use .net reactor"?

Reply

RE: [VB.Net] - Merge DLLs #5
.Net Reactor is an obfuscator for .net assemblies.
Has embed and merged assemblies feature.

Reply

RE: [VB.Net] - Merge DLLs #6
Here is a tutorial on how to do it. http://stackoverflow.com/questions/10137...l-into-exe
[Image: mU9i19G.gif]

Reply

RE: [VB.Net] - Merge DLLs #7
(07-06-2013, 11:44 PM)Electroalek Wrote: Here is a tutorial on how to do it. http://stackoverflow.com/questions/10137...l-into-exe

Can you show me the embed ressource method in VB.Net?
I like to use it in the webcam program where you helped me with.Smile

Reply

RE: [VB.Net] - Merge DLLs #8
Here is how you do it:

Code:
ILMerge.exe /target:winexe /targetplatform:"v4,C:\Program Files\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0" /out:finish.exe insert1.exe insert2.dll
Steps:

Open CMD and cd to your directory. Let's say: cd C:\test
Insert the above code.
/out:finish.exe | replace finish.exe with any filename you want.
Behind the /out:finish.exe you have to give the files you want to be combined.
???
PROFIT!
[Image: mU9i19G.gif]

Reply

RE: [VB.Net] - Merge DLLs #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.

Reply

RE: [VB.Net] - Merge DLLs #10
Can you maybe a tutorial/video for that? That would be cool Smile

Reply







Users browsing this thread: 1 Guest(s)