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 › Ummmm How do i Script this thing?

Ummmm How do i Script this thing?

Posts 1–2 of 2 · Page 1 of 1
GE
genya
I just started VB Studio 08, and i was wondering, since im gonna try to use this dudes loader, how or where would i put this code in?
Code:
Public Class Form1

    Private TargetProcessHandle As Integer
    Private pfnStartAddr As Integer
    Private TargetBufferSize As Integer

    Public Const PROCESS_VM_READ = &H10
    Public Const TH32CS_SNAPPROCESS = &H2
    Public Const MEM_COMMIT = 4096
    Public Const PAGE_READWRITE = 4
    Public Const PROCESS_CREATE_THREAD = (&H2)
    Public Const PROCESS_VM_OPERATION = (&H8)
    Public Const PROCESS_VM_WRITE = (&H20)

    Public Declare Function ReadProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByVal lpBuffer As String, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer) As Integer

    Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" ( _
    ByVal lpLibFileName As String) As Integer

    Public Declare Function VirtualAllocEx Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpAddress As Integer, _
    ByVal dwSize As Integer, _
    ByVal flAllocationType As Integer, _
    ByVal flProtect As Integer) As Integer

    Public Declare Function WriteProcessMemory Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpBaseAddress As Integer, _
    ByVal lpBuffer As String, _
    ByVal nSize As Integer, _
    ByRef lpNumberOfBytesWritten As Integer) As Integer

    Dim injector1 As String = "flameswor10 made this injector. If you see this, then the Coder is a noob C+Per. Flame him as hard as you can."

    Public Declare Function GetProcAddress Lib "kernel32" ( _
    ByVal hModule As Integer, ByVal lpProcName As String) As Integer

    Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" ( _
    ByVal lpModuleName As String) As Integer

    Public Declare Function CreateRemoteThread Lib "kernel32" ( _
    ByVal hProcess As Integer, _
    ByVal lpThreadAttributes As Integer, _
    ByVal dwStackSize As Integer, _
    ByVal lpStartAddress As Integer, _
    ByVal lpParameter As Integer, _
    ByVal dwCreationFlags As Integer, _
    ByRef lpThreadId As Integer) As Integer

    Public Declare Function OpenProcess Lib "kernel32" ( _
    ByVal dwDesiredAccess As Integer, _
    ByVal bInheritHandle As Integer, _
    ByVal dwProcessId As Integer) As Integer

    Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" ( _
    ByVal lpClassName As String, _
    ByVal lpWindowName As String) As Integer

    Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" ( _
    ByVal hObject As Integer) As Integer

    Private Sub Inject(ByVal pszLibFileRemote As String)
        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)
        Dim I As Integer
        pszLibFileRemote = ListBox1.Items.Item(I)
        pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
        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)
        If CheckBox1.Checked = True Then
        MsgBox(injector1)
            Me.Close()
        Else
        MsgBox(injector1)
            Button1.Enabled = True
            Button4.Enabled = True
            Button3.Enabled = True
            Button2.Enabled = True
        End If
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Dim TargetProcess As Process() = Process.GetProcessesByName("ProcessName.text")
        If TargetProcess.Length = 0 Then
            Me.Label3.Text = ("Waiting for " & ProcessName.Text & ".exe")
            Me.Label2.Text = ("Ready to Inject")
        Else
            Timer1.Stop()
            Me.Label3.Text = ("Injected to" & ProcessName.Text & ".exe")
            Me.Label2.Text = ("Injection Succesfull")
            For Each hack In ListBox1.Items
                Call Inject(hack.ToString)
            Next
        End If
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Button1.Enabled = False
        Button4.Enabled = False
        Button3.Enabled = False
        Button2.Enabled = False
        Timer1****terval = 50
        Timer1.Start()
        MsgBox("Ready to Inject")
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Button1.Text = "Auto Inject"
        Button5.Text = "Manual Inject"
        Button6.Text = "Save Settings"
        Button4.Text = "Clear Listbox"
        Button3.Text = "Remove dll"
        Button2.Text = "Add DLL"
        Me.Label1.Text = ("Please Enter Process Name without .exe")
        Me.Label3.Text = ("Welcome to my injector")
        Me.Label2.Text = ("Please Choose a dll file")
        Dim fileReader As System.IO.StreamReader
        If IO.File.Exists(Application.StartupPath & "\settings****i") Then
            fileReader = _
            My.Computer.FileSystem.OpenTextFileReader(Application.StartupPath & "\settings****i")
            Dim stringReader As String
            stringReader = fileReader.ReadLine()
            If stringReader = "Checkbox1.Checked = 1" Then
                CheckBox1.Checked = True
            Else
            End If
        Else
            Dim file As New System.IO.StreamWriter(Application.StartupPath & "\settings****i")
            file.WriteLine("Checkbox1.checked = 0")
            file.Close()
        End If
End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Dim OpenFileDialog1 As New OpenFileDialog

        OpenFileDialog1****itialDirectory = "Desktop"
        OpenFileDialog1.Filter = "DLL files (*.dll)|*.dll|All files (*.*)|*.*"
        OpenFileDialog1.FilterIndex = 1
        OpenFileDialog1.RestoreDirectory = True
        OpenFileDialog1.Multiselect = True

        If OpenFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
            Try
                For Each i As Object In OpenFileDialog1.FileNames
                    ListBox1.Items.Add(i)
                Next
            Catch Ex As Exception
                MessageBox.Show("Cannot read file from disk. Original error: " & Ex.Message)
            End Try
        End If
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        ListBox1.Items.Remove(ListBox1.SelectedItem.ToString)
    End Sub

    Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
        ListBox1.Items.Clear()
    End Sub

    Private Sub Button5_Click(ByVal pszLibFileRemote As String)
        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)
        If CheckBox1.Checked = True Then
            Me.Close()
        MsgBox(injector1)
        Else
        MsgBox(injector1)
        End If
    End Sub

    Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
        Dim file As New System.IO.StreamWriter(Application.StartupPath & "\settings****i")
        file.WriteLine("Checkbox1.Checked = " & CheckBox1.CheckState)
        file.Close()
        MsgBox("Settings are Saved")
    End Sub
End Class
Also, how do i change the text size? i looked in prperties, wont letme

Help 0.0 I wanna get this
#1 · edited 16y ago · 16y ago
Lolland
Lolland
It's not scripting, it's programming/coding.

Second, you're not coding anything really, you're just copy and pasting.

Third, learn basics before you try to make a program. There's my video tutorials stickied above, they're great for starters. After learning the basics from my tutorials, try to make your own projects with aid of tutorials.

If you need any help, VM/PM me, or feel free to add me on MSN, my email adress is in my signature.

Have a good day

/close
#2 · 16y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • HOW THE HELL THIS THING IS CALLEDBy nesakysiu in General
    14Last post 16y ago
  • How many people on this forum Play WoW?By RebornAce in General
    27Last post 16y ago
  • For the Idiots Who Want To Learn how 2 Hack Read This:By penrd in General Hacking
    28Last post 17y ago
  • OMFG HOW THE HELL DOES THIS HAPPENBy grekx in Spammers Corner
    13Last post 18y ago
  • How do you fix this weapon lag...By iHack in WarRock - International Hacks
    15Last post 19y ago

Tags for this Thread

None