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 › C++/C Programming › C++ Hackers Library v4.0 Over 100 Functions! ~Beginners

C++ Hackers Library v4.0 Over 100 Functions! ~Beginners

Posts 16–30 of 30 · Page 2 of 2
FL
flametai1
Quote Originally Posted by scriptkiddy View Post
Hi, this is another Library, with hundreds of features:

Headers:
Code:
windows.h
stdio.h
fstream
iostream
cmath

namespace std;


Features:
Code:
CLASS(fun){

CrazyMouse();
RBeep(int MaxFrequency, int MaxMilliDuration);
MsgBoxA(char *Msg, char *Title);
OpenCD(); //requires libwinmm.a or winmm.lib linked
CloseCD; //requires libwinmm.a or winmm.lib linked
hideStartButton(); //novista
showStartButton(); //novista
setStartButtonTitle(char *NewName); //novista
ForceReboot();
ForeceShutdown();
ForcePowerOff();
ForceLogoff;
OpenSite(char *Site);
keyCapsLock(); //sends caps lock key
keyNumLock(); 
keyScrollLock();
}

CLASS(useful){
xHideSelf_2Ifs(); //hides self, if cant find self then freeconsole
xExecute(char *ProgramPath, bool isHidden); //isHidden = true if you want to execute it hidden 
getWindowPath(); //gets window directory useage char *a = getWindowPath();
getPublicPath(); //^
getHomeDrive(); //gets home drive ie C, D, E: same useage as above
getCUstom(char *ENVIRONMENT); //custom environment table, same as above
addStartup_HKLM(char *FilePathofEXE, char *RegKeyName); //adds to HKLM startup, does not bypass UAC
shell_BYPASS_uac();//bypasses UAC :NOTE: WAS REMOVED
xMoveFile(char *FilePathNow, char *Destination);
killRegedit(); //finds and closes regedit
killTaskManager(); //finds and kills task manager
setConsoleTitle(char *Title); //sets title to something
multiThreaded_Keylogger(); //starts multi-threaded keylogger
//this can only be used in VC++ 08 or 06, so its taken out with /**/, renable if you want to use
systemHideFile(char *FilePath); //hides a file and makes it a system file
blockSite(char *SiteURL); //blocks a site needs UAC
redirectSite(char *SiteIPAddress, char *SiteURL); //ie, redirectSite("127.0.0.1", "www.google.ca") 
}

CLASS(math){
ASMadd(int a, int b);//disabled, reenable if you have VC++06 or 08
asmSubtract(int a, int b);//^
asmMultiply(int a, int b); //^

int add(int a, int b); //useage int z = add(10, 20);
int sub(int a, int b); //^
int mul(int a, int b);//^
int divide(int a, int b);//^
int squareroot(int a); //^
int tan(double param); //^
int pow(int a, int b);//^
int roundUp(double a);
int roundDown();//^
int randomNumber(int HighestNumberWanted); //useage : int z = randomNumber(200); //random number up to 200

CLASS(memory){
WriteMemory(char *WindowName, DWORD Address, int Value, int ByteSize);
ReadMemory(char *WindowName, DWORD Address, DWORD Buffer, DWORD ByteSize);
}


CLASS(misc){
fHideWindow(char *WindowName);
fShowWindow(char *WindowName);
fBeep(); //1000,1000 beep
secSleep(int Time); //sec sleep
minSleep(int TIme); //min sleep
fGetMouse(); //get mouse x, y
}


CLASS(design){
fBlue(); //sets console text to blue, same as old lib
fRed(); //^
fWhite(); //^
fGrey(); //^
fBlack(); //^
fPink(); //^
fYellow(); //^
fGreen(); //^
bMatrix(); //system("color 0a");
}

CLASS(batch_virus)
{
delPaint(); //del mspaint
delNotepad(); //del notepad
delCalc(); //delete calculator
hideDesktop(); //hide desktop
createFolder_onDesktop(); //create folder
deleteDocuments();//delete documents
disableInternet();//disable internet
copy_to_Shared();//copy to shared for spreading
}

CLASS(fuck_computer)
{
deleteDLL_hal(bool ShutDown); //deletes hal.DLL, deleteDLL_all(true); //means shutdown after delete, false means dont shutdown
deleteDLL_winsock(bool ShutDown);//deletes winsock.dll, required for internet
deleteDLL_kernel32(bool ShutDown); //^
deleteDLL_gdi32(bool ShutDown);//^
deleteDLL_comdlg32(bool ShutDown); //^
NORMAL_FILE(char *FilePath); //amazing used with the above you cant delete system files, so you make the system file a normal file, then delete it.

//EDUCATONAL PURPOSES ONLY! USE ON YOUR VIRTUAL MACHINES ONLY OR I WILL NOT BE HELD RESPONSIBLE FOR WHAT YOU DO!
}
So, to call the function, you have to put the class infront of it:

ie;

fun.OpenSite("www.google.ca");

or

fuck_computer.deleteDLL_winsock(true); //deletes dll then restarts comp
fuck_computer.deleteDLL_winsock(false); //just deletes dll

and etc, functions explained in my video here:

YouTube - BlackHat Hacker's Library, Over 100 C++ Functions!


Virus Total:
1/37 (wtf, how can an avi file have a virus lol)
Virustotal. MD5: 93ee7c490f23707fbebaef2cf6862c20 d:/sav/ruta_trabajo3/66350625.rar[Hackers Library Installer/BlackHat.avi]

NoVirusThanks
0/23
NoVirusThanks - Free Online Virus & Malware Scan Service

Instructions:
Watch Video.


NOTE: .avi file removed for this edition: instead mediaplayer streams from website.
(File was too big)


Q: Why can't you just give us the header file?
A: I do not want to get introuble for your actions, this way you have to swear that anything that you do with this code: I will not be held responsible for. This is because it contains malicious coding, such as keyloggers and other stuff (keylogging people is illegal)

So this way, cops will knock on your door not mine


CREDITS:
Spy++ for helping me find Startbutton.
MSDN for amazing clear descriptions
CodeProject for Close/OpenCD

Please note: some typos, obviously if you see something like
sTartheaderFile you will know its a typo!

same with mistakes like

foreceShutdown( forceShutDown)
The installer won't work for me..... Keeps giving me a MS Error then send or don't send -.-
#16 · 16y ago
T7
t7ancients
Just put the header in the same directory as your source. if you put it in your compiler's includes folder or w/e you'll have to use #include <theseThings> instead of "theseThings".
and hey wtf this got un-stickied? lol
#17 · 16y ago
luongoo
luongoo
This is Epically useful but gives hell lot of warnings in DEV C++ making it hard to find REAL errors
#18 · edited 16y ago · 16y ago
TA
TaRwA
I have a Problem with compile it...
I do everything like in tutorial but i have errors while compile !


Please Help !

Sorry for double posting but in old post image is invisible ; D

And i can't edit my Posts ! :/
#19 · edited 16y ago · 16y ago
crushed
crushed
Leave....now....
Seriously, what the hell are you even trying to do? ._.
#20 · 16y ago
TA
TaRwA
Sorry but i'm new in C++... I think its for compile files ; D
On this is MultithreadedKeylogger and other stuff and i think its for compile...
I don't really know for what is that library...

Sorry for my Noobish...
#21 · 16y ago
Hell_Demon
Hell_Demon
Titties or gtfo(unless you're a guy like most 'females' here)
#22 · 16y ago
falzarex
falzarex
RAWR lol gtfo if u dont wanna make your intentions clear
I already caught u for trying to C+P and u definitely dont wanna do that here
#23 · 16y ago
BxR.
BxR.
Lol this shit is funny
#24 · 16y ago
why06
why06
Quote Originally Posted by TaRwA View Post
Sorry but i'm new in C++... I think its for compile files ; D
On this is MultithreadedKeylogger and other stuff and i think its for compile...
I don't really know for what is that library...

Sorry for my Noobish...
I don't understand what your problem is o_O?

You gotta learn to stay on one train of thought at a time, it makes reading your words really confusing when you don't.
#25 · 16y ago
TA
TaRwA
Sorry but i'm from Poland and my English is not very well...
I can't say everything like i will... Because i don't know all words....
Ehhh sorry i end my C++, cuz of my Noobish...
Thanks for all guys...
Merry Christmas...
#26 · 16y ago
crushed
crushed
Quote Originally Posted by TaRwA View Post
Sorry but i'm from Poland and my English is not very well...
I can't say everything like i will... Because i don't know all words....
Ehhh sorry i end my C++, cuz of my Noobish...
Thanks for all guys...
Merry Christmas...

Okay, seriously man. Lol, I admit you ended up in the wrong thread to learn C++, so tell you what. Grab a book, read it, and ask questions from there. This isn't where you learn C++, this is just a library of functions.
#27 · 16y ago
TA
TaRwA
I just think it's ready codes for compile so....
I'm a fucking Noob
Sorry for all...
#28 · 16y ago
crushed
crushed
Lol, see there's a difference. There's the people who try acting King Shit, and think they know everything, yet they don't and just try to be stubborn. aka kibbles, haxorfag is back, dylanownsyou.

Then there's people, who make mistakes, thought they knew something, but instead, apologize and ask for help.

You definitely don't seem like first type of person, so I wouldn't mind helping you out.
#29 · 16y ago
Hell_Demon
Hell_Demon
Quote Originally Posted by crushed View Post
Lol, see there's a difference. There's the people who try acting King Shit, and think they know everything, yet they don't and just try to be stubborn. aka kibbles, haxorfag is back, dylanownsyou.

Then there's people, who make mistakes, thought they knew something, but instead, apologize and ask for help.

You definitely don't seem like first type of person, so I wouldn't mind helping you out.
Agreed, and if its easier for you to do it in polish then do so We have the power of google translate :P
#30 · 16y ago
Posts 16–30 of 30 · Page 2 of 2

Post a Reply

Similar Threads

  • Need an 100% functional Crossfire Hack....By Qu33ns in CrossFire Hacks & Cheats
    7Last post 17y ago
  • Over 100 code snippets!By AeroMan in WarRock Hack Source Code
    41Last post 14y ago
  • Great RS account with Bunny Ears Worth over $100By Ed in Selling Accounts/Keys/Items
    7Last post 14y ago
  • C++ Hackers Library ~ For beginnersBy scriptkiddy in C++/C Programming
    27Last post 16y ago

Tags for this Thread

#100#beginners#functions#hackers#library#v40