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 › MultiPlayer Game Hacks & Cheats › CrossFire Hacks & Cheats › CrossFire Hack Coding / Programming / Source Code › New LoadLibrary Program

New LoadLibrary Program

Posts 1–11 of 11 · Page 1 of 1
00
006B
New LoadLibrary Program
USEFUL FOR...LOADLIB CSHELL OR SOMEONE HACK OR ANY DLL!!!



Make a new windows form application with a textbox, label, 2 buttons, and openfiledialoge.

Under your form class, put this

Code:
Public Declare Auto Function LoadLibrary Lib "kernel32" (ByVal lpLibFileName As String) As IntPtr
Under your first button, put this

Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If LoadLibrary(TextBox1.Text) Then
            Label1.Text = "Loaded..."
        Else

            Label1.Text = "Not Loaded..."
        End If
    End Sub
Under your second button put this

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

        openFileDialog1.InitialDirectory = "C:\Program Files (x86)\Z8Games\CrossFire\"
        openFileDialog1.Filter = "dll files (*.dll)|*.dll"
        openFileDialog1.RestoreDirectory = True
        If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then


            Try
                TextBox1.Text = openFileDialog1.FileName
            Catch ex As Exception

            End Try
            End If
    End Sub
Then add this code

Code:
    Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles OpenFileDialog1.FileOk
        TextBox1.Text = OpenFileDialog1.FileName
    End Sub
End Class
So it will look like this

Code:
Public Class Form1
    Public Declare Auto Function LoadLibrary Lib "kernel32" (ByVal lpLibFileName As String) As IntPtr
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If LoadLibrary(TextBox1.Text) Then
            Label1.Text = "Loaded..."
        Else

            Label1.Text = "Not Loaded..."
        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.InitialDirectory = "C:\Program Files (x86)\Z8Games\CrossFire\"
        openFileDialog1.Filter = "dll files (*.dll)|*.dll"
        openFileDialog1.FilterIndex = 2
        openFileDialog1.RestoreDirectory = True
        If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OK Then


            Try
                TextBox1.Text = openFileDialog1.FileName
            Catch ex As Exception

            End Try
            End If
    End Sub

    Private Sub OpenFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles OpenFileDialog1.FileOk
        TextBox1.Text = OpenFileDialog1.FileName
    End Sub
End Class
Credits

Code:
006b
Lauwy
Machida
Binary:

VSCAN 1

VirusTotal - Free Online Virus, Malware and URL Scanner

VSCAN 2

LoadLibrary.rar - Jotti's malware scan

FALSE POSITIVES BECAUSE THE SOURCE IS RIGHT THERE!
LoadLi.rar
#1 · edited 14y ago · 14y ago
Hero
[MPGH]Hero
Fix your virus total scan. You need a screenshot as well. Also the virus scan jotti's file name doesn't match the file you attached.
#2 · 14y ago
00
006B
Quote Originally Posted by Hero View Post
Fix your virus total scan. You need a screenshot as well. Also the virus scan jotti's file name doesn't match the file you attached.
They are the same, because when I upload "LoadLibrary.rar" it cut off "brary" in the attachment...I don't know why.

PS: Fixed everything else, thanks
#3 · 14y ago
Fly3r
Fly3r
thanks for Posting this
#4 · 14y ago
[P]owne[D]
[P]owne[D]
Looks verry nice and simple too
#5 · 14y ago
Jigsaw
Jigsaw
The scans still doesn't match with the attachment's name.
#6 · 14y ago
25
258456
or you can make a really simple one like this in native c++:

Code:
#include <windows.h>
#include <iostream>
using namespace std;

int main()
{
char *dllname;

cout<<"Enter dll name here: ";
cin>>dllname;
LoadLibraryA(dllname);
system("PAUSE");
return 0;
}
But if you want a nice gui do 006B's way, lol. Good job though.
#7 · 14y ago
[[SeXergy]]
[[SeXergy]]
Yes, thanks. This could be very useful.
#8 · 14y ago
Jacket
Jacket
LoadLi.rar - Jotti's malware scan
VirusTotal - Free Online Virus, Malware and URL Scanner

/approved
#9 · 14y ago
HLBOT
HLBOT
Fack' you Diver xD..Good jobs
#10 · 14y ago
00
006B
Fuck you too bro <3 Jk I love you xD
#11 · 14y ago
Posts 1–11 of 11 · Page 1 of 1

Post a Reply

Similar Threads

  • New Hacking ProgramBy firesnipe5 in Trade Accounts/Keys/Items
    1Last post 19y ago
  • (Sharing a new tapping program by Uzeil it works!)By scycry in Soldier Front Hacks
    24Last post 17y ago
  • my new lazy program have fun mods minions and usersBy Luke420 in Combat Arms Discussions
    25Last post 17y ago
  • new modding programBy arturspider2 in Combat Arms Mods & Rez Modding
    11Last post 16y ago
  • my new lazy program have fun mods minions and usersBy Luke420 in Combat Arms Hacks & Cheats
    2Last post 17y ago

Tags for this Thread

None