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] List box won't work?

Question[HELP] List box won't work?

Posts 1–9 of 9 · Page 1 of 1
jajarem64
jajarem64
[HELP] List box won't work?
Ok my loader has a listbox obviously and I've gotten help on streaming the hacks before the download code is the 1 I got from J-Deezy there is a problem the dll gets added to the listbox BUT its just acting like its added but its really not yeah it will add the file path and name etc. but it doesn't inject the actual dll it just acts like it does and moves along with its business >.> Check my code please there might be a problem I dunno yet.

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(TextBox1.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(filename)
        Dim Rtn As Integer
        Dim LoadLibParamAdr As Integer
        LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
        Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, filename, TargetBufferSize, 0)
        CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
        CloseHandle(TargetProcessHandle)
1:      Me.Show()
    End Sub
Here is the download code
Code:
Private Sub DownloadSt (ByVal url As String, ByVal folder As String) 

        Dim client As Net.WebClient = WebClient1


        Dim lio As Integer = url.LastIndexOf("/") + 1

        filename = url.Substring(lio)

        Dim location As String = folder

        totalpath = location & "\" & filename '' 

        If Not IO.File.Exists(totalpath) Then

            client.DownloadFile(url, totalpath)
            Dlls.Items.Add(filename)
        End If
    End Sub
Oh here is my timer
Code:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If CheckBox1.Checked = True Then
            Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
            If TargetProcess.Length = 0 Then

                Me.Label1.Text = ("Waiting for " + TextBox1.Text + ".exe...")
            Else
                Timer1.Stop()
                Me.Label1.Text = "Successfully Injected!"
                Call Inject()
                If CheckBox1.Checked = True Then
                    Me.Close()
                Else
                End If
            End If
        End If

    End Sub
#1 · 16y ago
Blubb1337
Blubb1337
[php]For i = 0 To ListBox1.Items.Count - 1

pszLibFileRemote = ListBox1.Items.Item(i)

TargetBufferSize = 1 + Len(pszLibFileRemote)


LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
Next i[/php]

Tho, I do not really understand you, rephrase plox.
#2 · 16y ago
jajarem64
jajarem64
I can't explain it more simple. The dll gets added to the listbox like normal but you get in-game and you see the hack didn't really get injected why is this? It tells me it injected successfully but when I use a open file dialog it works. This shit is just pissing me off >.>
#3 · 16y ago
wassup40
wassup40
haha u talk funny Win
#4 · 16y ago
jajarem64
jajarem64
I'm just tired and pissed off >.>
#5 · 16y ago
Blubb1337
Blubb1337
Did you try the code I have posted?

Does it work with 1 dll only?
#6 · 16y ago
aLcohoL_95
aLcohoL_95
w8
[php] On Error GoTo 1 ' If error occurs, app will close without any error messages
[/php]
And
[php]
1: Me.Show()
[/php]
i think it must be
===
[php]1: Me.Close()
[/php]
:S
bcuz i think program will not close with [php]Me.Show[/php]
#7 · 16y ago
Blubb1337
Blubb1337
You think so? Pretty obvious =/

And no, that cannot cause the error. Try whether it works with 1 item & try my code...
#8 · 16y ago
jajarem64
jajarem64
I did it still doesn't work I only need it to work with 1 item anyways.
#9 · 16y ago
Posts 1–9 of 9 · Page 1 of 1

Post a Reply

Similar Threads

  • [HELP]D3D Menu Won't WorkBy Lonly in Combat Arms Hack Coding / Programming / Source Code
    31Last post 16y ago
  • Need some help. Hack/Injector won't work.By Vexatiion in Combat Arms Help
    6Last post 15y ago
  • Texture won't work, help needed :(By Kikimo900 in Combat Arms Mod Help
    1Last post 15y ago
  • [Help]List BoxBy Web-Designer in Visual Basic Programming
    6Last post 15y ago
  • Hack's won't work, help!By sotakossu in WarRock - International Hacks
    4Last post 17y ago

Tags for this Thread

None