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 › Advanced Hack Loader FTP !

Advanced Hack Loader FTP !

Posts 1–6 of 6 · Page 1 of 1
AH
ahmet81
Advanced Hack Loader FTP !
Want to Make a Hack Loader. Due to the site DLL.

Code:
Private Sub Inject()
        On Error GoTo 1
        Timer1.Stop()
        Dim TargetProcess As Process() = Process.GetProcessesByName("Engine.exe")
        TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
        pszLibFileRemote = "http://***/hack.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:      Me.Close()
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        If IO.File.Exists("http://***/hack.dll") Then
            Dim TargetProcess As Process() = Process.GetProcessesByName("Engine.exe")
            If TargetProcess.Length = 0 Then
                TextBox1.Text = ("Waiting for Engine.exe...")
            Else
                Timer1.Stop()
                TextBox1.Text = "Injected!"
                Call Inject()
            End If
        Else
            Label1.Text = ("Can't find DLL on server")
        End If
    End Sub
But I found a code does not work. ^^

Help!
#1 · 14y ago
Null::Void
Null::Void
What are you trying to do? download a hack and then inject it?
#2 · 14y ago
NextGen1
NextGen1
Everyone who leaches this code ends up with some sort of error or another, If you want to inject I strongly recommend @Jason ('s) post http://www.mpgh.net/forum/33-visual-...epth-look.html .

Your missing SO!!!! much as well, your missing imports and about 40 declarations.
Follow Jasons guide.
#3 · 14y ago
PR
PrE
FTP >> Very unsafe, people can easily reverse your .net app and get FTP credentials.
#4 · 14y ago
Hassan
Hassan
Quote Originally Posted by PrE View Post
FTP >> Very unsafe, people can easily reverse your .net app and get FTP credentials.
Not unless you are stupid and don't obfuscate your application properly. It still is unsafe, but way above the head of an average coder to reverse it.
#5 · 14y ago
PR
PrE
Quote Originally Posted by Hassan View Post


Not unless you are stupid and don't obfuscate your application properly. It still is unsafe, but way above the head of an average coder to reverse it.
Even if it was packed securely, i wouldn't use it.
It can still be revered like you said.
Also anyone can use wireshark/fiddler.

You can also use PHP scripts to do server side stuff such as editing/deleting files, there are still better ways to do this though, one way is by downloading a txt file from a host which contains the download link, process name etc.. then simply split into listview. Safer and simpler.
#6 · edited 14y ago · 14y ago
Posts 1–6 of 6 · Page 1 of 1

Post a Reply

Similar Threads

  • [tut] new tut for starting hackers... again, making advanced hacks i guessBy blackdrag0 in WarRock - International Hacks
    21Last post 19y ago
  • Project TM - Hack Loader BeaBy xTMx in Combat Arms Hacks & Cheats
    26Last post 16y ago
  • *** Public Hack LoaderBy Trick- in Combat Arms Hacks & Cheats
    4Last post 16y ago
  • Advanced Hacking tutorial (How to find adresses for the coolest trainer functions)By nukeist_ in WarRock - International Hacks
    8Last post 19y ago
  • [Tutorial] How to set hotkeys to more advanced hacks.By wr194t in Visual Basic Programming
    13Last post 18y ago

Tags for this Thread

None