Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › Add DLL file to resources of injector and make it work..

Add DLL file to resources of injector and make it work..

Posts 1–14 of 14 · Page 1 of 1
hitmen69
hitmen69
Add DLL file to resources of injector and make it work..
hi all mpgh members
i have one injector what i made in VB and dll file
so my question is :
can you add that dll file and put it in resources and debug that injector so it can automatic inject to the process we want..
if you can please someone send code or something how to do this
Thanks
#1 · 15y ago
Jason
Jason
Quote Originally Posted by hitmen69 View Post
hi all mpgh members
i have one injector what i made in VB and dll file
so my question is :
can you add that dll file and put it in resources and debug that injector so it can automatic inject to the process we want..
if you can please someone send code or something how to do this
Thanks
You just add the dll to resources, then at runtime write it to a temporary file, then inject it.
#2 · 15y ago
LY
Lyoto Machida
Almost the same thing in snippet vault.

First thread/post in snippet vault, the last snippet..
#3 · 15y ago
hitmen69
hitmen69
Quote Originally Posted by Jason View Post


You just add the dll to resources, then at runtime write it to a temporary file, then inject it.
i dont get it..
i read snippets vault and i know how to do it with exe. file but i dont understand how to do it .dll
Jason can you write a code for me i know that's spoonfeding but can you pls just help me ?
thank you and sorry for my bad english..
#4 · 15y ago
freedompeace
freedompeace
Quote Originally Posted by hitmen69 View Post
i dont get it..
i read snippets vault and i know how to do it with exe. file but i dont understand how to do it .dll
Jason can you write a code for me i know that's spoonfeding but can you pls just help me ?
thank you and sorry for my bad english..
It's the same thing. Both are files.
#5 · 15y ago
master131
[MPGH]master131
Add the file to your Resources (My Project > Resources) then use this to write the file:
System.IO.File.WriteAllBytes("blah, file path", My.Resources.ResourceName)
#6 · 15y ago
hitmen69
hitmen69
Quote Originally Posted by master131 View Post
Add the file to your Resources (My Project > Resources) then use this to write the file:
System.IO.File.WriteAllBytes("blah, file path", My.Resources.ResourceName)
ok i did that but when i click button listbox text will be byte[]array
something like that..
#7 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by hitmen69 View Post
ok i did that but when i click button listbox text will be byte[]array
something like that..
Try this:
[VB.NET]Read/Write Resource(Bypass Avira)
#8 · 15y ago
Jason
Jason
Quote Originally Posted by Horatio Caine View Post


Try this:
[VB.NET]Read/Write Resource(Bypass Avira)
Horrible example for something so simple.

[highlight=vb.net]
Dim dllLoc As String = IO.Path.Combine(My.Computer.FileSystem.SpecialDire ctories.Temp, Math****und(Rnd() * 912152112319).ToString() + ".dll")
IO.File.WriteAllBytes(dllLoc, My.Resources.Dll)
[/highlight]

Now dllLoc holds the location on disk of your dll.
#9 · 15y ago
♪~ ᕕ(ᐛ)ᕗ
♪~ ᕕ(ᐛ)ᕗ
Quote Originally Posted by Jason View Post


Horrible example for something so simple.

[highlight=vb.net]
Dim dllLoc As String = IO.Path.Combine(My.Computer.FileSystem.SpecialDire ctories.Temp, Math****und(Rnd() * 912152112319).ToString() + ".dll")
IO.File.WriteAllBytes(dllLoc, My.Resources.Dll)
[/highlight]

Now dllLoc holds the location on disk of your dll.
File.IO.WriteAllBytes() for me gives an error. That's why I searched.
#10 · 15y ago
hitmen69
hitmen69
i got two errors here...
#11 · 15y ago
Blubb1337
Blubb1337
Quote Originally Posted by hitmen69 View Post
i got two errors here...


Dlloc = Either declare a string variable named dlloc or just write the path where it should be extracted.

@*** - Math . Round
#12 · 15y ago
hitmen69
hitmen69
ok i did it
but how to now enter that in a listbox?
#13 · 15y ago
Jason
Jason
Quote Originally Posted by hitmen69 View Post
ok i did it
but how to now enter that in a listbox?
Seriously, learn the basics of coding.
#14 · 15y ago
Posts 1–14 of 14 · Page 1 of 1

Post a Reply

Tags for this Thread

None