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 › [Help]WarRock injector doesn't work

Smile[Help]WarRock injector doesn't work

Posts 1–12 of 12 · Page 1 of 1
ED
edrsvc
[Help]WarRock injector doesn't work
Hello MPGH!

Ohh please help me !

I've tried to make a injector for WarRock but it doesn't inject the .dll.
Here is the code of the inject part of the whole script:
Code:
Private Sub Inject()
        On Error GoTo 1 ' If error occurs, app will close without any error messages
        Timer1.Stop()
        Dim TargetProcess As Process() = Process.GetProcessesByName("WarRock")
        TextBox2.Text = (time + "Process found!!")
        TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
        pszLibFileRemote = Application.StartupPath & "\" + ExeName + ".dll"
        pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
        TargetBufferSize = 1 + Len(pszLibFileRemote)
        Dim Rtn As Integer
        Dim LoadLibParamAdr As Integer
        LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
        Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
        CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
        CloseHandle(TargetProcessHandle)


1:      TextBox1.Text = ("Error:")

        TextBox2.Text = (time + ": Please run as Administrator")
    End Sub
Yes, the script is NOT from me. But I'm trying to get better skills in BASIC.

Please help me with that problem.
Greeting
edrsvc
#1 · 16y ago
Auxilium
Auxilium
Quote Originally Posted by edrsvc View Post
Hello MPGH!

Ohh please help me !

I've tried to make a injector for WarRock but it doesn't inject the .dll.
Here is the code of the inject part of the whole script:
Code:
Private Sub Inject()
        On Error GoTo 1 ' If error occurs, app will close without any error messages
        Timer1.Stop()
        Dim TargetProcess As Process() = Process.GetProcessesByName("WarRock")
        TextBox2.Text = (time + "Process found!!")
        TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
        pszLibFileRemote = Application.StartupPath & "\" + ExeName + ".dll"
        pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
        TargetBufferSize = 1 + Len(pszLibFileRemote)
        Dim Rtn As Integer
        Dim LoadLibParamAdr As Integer
        LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
        Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
        CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
        CloseHandle(TargetProcessHandle)


1:      TextBox1.Text = ("Error:")

        TextBox2.Text = (time + ": Please run as Administrator")
    End Sub
Yes, the script is NOT from me. But I'm trying to get better skills in BASIC.

Please help me with that problem.
Greeting
edrsvc
Why is this in the C++ section?
#2 · edited 16y ago · 16y ago
Void
Void
Get your VB shit out of here.
#3 · 16y ago
ED
edrsvc
OHHH SORRY!!!! I'll delete it!
#4 · 16y ago
Auxilium
Auxilium
Quote Originally Posted by edrsvc View Post
OHHH SORRY!!!! I'll delete it!
...you can't
#5 · 16y ago
Void
Void
Just wait for Wes to move it.
#6 · 16y ago
'Bruno
'Bruno
ya know.. its understandable... VB is the same shit as C++
#7 · 16y ago
Hell_Demon
Hell_Demon
Quote Originally Posted by Brinuz View Post
ya know.. its understandable... VB is the same shit as C++
I'm glad I know that you know better.. if not i'd so get ur ass banned D:

~moved to VB~
#8 · 16y ago
Lolland
Lolland
It's because that "script" fails.

You need to use a newer copypastable source, or write your own.

Theres a search button for a reason.
#9 · 16y ago
flameswor10
flameswor10
Try this

Code:
        Timer1.Stop()
        Dim TargetProcess As Process() = Process.GetProcessesByName(ProcessName.Text)
        TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
        pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
        TargetBufferSize = 1 + Len(pszLibFileRemote)
        Dim Rtn As Integer
        Dim LoadLibParamAdr As Integer
        LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
        Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
        CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
        CloseHandle(TargetProcessHandle)
#10 · 16y ago
ED
edrsvc
Thank you verry much for your fast answers! I'm trying to solve my problem with your answers.
You two got a thanks from me.
I'll post a message if it works or not.
#11 · 16y ago
/B
/b/oss
look, there's TUT from blub: http://www.mpgh.net/forum/33-visual-...jector-os.html
but please, don't post anythink there (bump)
#12 · 16y ago
Posts 1–12 of 12 · Page 1 of 1

Post a Reply

Similar Threads

  • [Help] My Made Injector Doesn't WorkBy Evil-Pancake in Combat Arms EU Help
    0Last post 16y ago
  • My Injector doesn't WorkBy iRaid in WarRock Help
    2Last post 16y ago
  • Warrock Hacks Doesn't work (very detailed)By harelori in WarRock Discussions
    6Last post 16y ago
  • injector doesn't workBy grypery in CrossFire Help
    4Last post 15y ago
  • Need some help. Hack/Injector won't work.By Vexatiion in Combat Arms Help
    6Last post 15y ago

Tags for this Thread

None