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 › [REQUEST] Call Inject function [Solved]

Smile[REQUEST] Call Inject function [Solved]

Posts 1–4 of 4 · Page 1 of 1
jajarem64
jajarem64
[REQUEST] Call Inject function [Solved]
Well I've made injectors before etc. etc. but what I need is a Call Inject function w/e that doesn't open only 1 dll that's either selected from my listbox or the last dll I opened in my OpenFileDialog all those are bullshit I need 1 that will inject all (if there is more than 1) dll from my listbox. Don't flame me and say oh go learn VB because I have and it's not that simple to rewrite a whole source for a injector when you kind of need it within the hour etc. So please members of mpgh help another fellow MPGHian out. I have also looked around for the past couple of days and haven't found anything even when I first started coding in VB I looked for a good src. for an injector (which btw was almost a year ago) and didn't find anything so. Please post something useful if it's not useful at all don't post w/e you're thinking if you know it's flaming or offensive criticism orelse I will report your post and proper actions will be taken. Thank you

Note: I also think alot of people would also find this useful, because I know I'm not the only 1 searching for this for days and putting alot of effort in just reading shit you don't understand to make some sense of it and trying to fix it yourself and then fail, fail, and fail time again so we come to you guys who've mastered the ethics of VB and many other coding languages, to you guys who help also many thanks
#1 · edited 15y ago · 15y ago
Jason
Jason
Simply add a parameter to your existing injection function that accepts the file location of the current .dll. Then loop through the items in the listbox, passing them as the parameter to the injection function as you call it.

I'm going to go ahead and assume you're using the standard injection method everyone uses. So change the first line of the sub to this:

Code:
Private Sub Inject(ByVal dllPath As String)


Then on the pszLibFileRemote or whatever the hell it's called line (the one where you're assigning it's value), change it to this

pszLibFileRemote = dllPath

now, to inject all the listbox items (assuming they contain the full path)

Code:
For each item As String in ListBox1.Items
    Inject(item)
Next


Hope that helps.
#2 · 15y ago
jajarem64
jajarem64
Thank you for your reply Jason you solved my problem :P
#3 · 15y ago
NextGen1
NextGen1
Or just use my MPGH SDK

Marked solved.
#4 · 15y ago
Posts 1–4 of 4 · Page 1 of 1

Post a Reply

Tags for this Thread

None