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 Coding & Resources › Inject dll

QuestionInject dll

Posts 1–15 of 21 · Page 1 of 2
NI
NiStyleR
Inject dll
I want to inject dll file into my Garry's mod. I am using linux mint. Help please
#1 · 11y ago
CD
cdriza
Quote Originally Posted by NiStyleR View Post
I want to inject dll file into my Garry's mod. I am using linux mint. Help please
Linux Injector
#2 · 11y ago
ZE
ZER0MEM0RY
Linux does not support Dlls since it is designed and used by Windows NT by microsoft. NT and Linux are entirely different operating systems, Windows uses PE format whereas linux uses ELF. Windows executables end as .exe whereas linux does not have any extensions, any file can be executed depending on it's contents. Dll is like an exe, basically they are not so different, they have same kind of architecture, dll just cannot be executed directly. Dll is in PE format, so it cannot be used in linux.
#3 · 11y ago
CD
cdriza
Quote Originally Posted by ZER0MEM0RY View Post
Linux does not support Dlls since it is designed and used by Windows NT by microsoft. NT and Linux are entirely different operating systems, Windows uses PE format whereas linux uses ELF. Windows executables end as .exe whereas linux does not have any extensions, any file can be executed depending on it's contents. Dll is like an exe, basically they are not so different, they have same kind of architecture, dll just cannot be executed directly. Dll is in PE format, so it cannot be used in linux.
linux has c++ tho

you know that

rite?
#4 · 11y ago
ZE
ZER0MEM0RY
Quote Originally Posted by cdriza View Post


linux has c++ tho

you know that

rite?
So?

Linux and Windows have different KERNELS this means they have entirely different APIs and ABIS, so you cannot directly move C++win32 project to linux because c++ on windows relays on it's API. Linux does not have .dll files at ALL, it does not support or recognize them.
dll equivalent for linux is .so. YOU CAN'T USE DLL FILES ON LINUX, YOU CANNOT INJECT THEM AT ALL.
#5 · 11y ago
SI
Siknik64
Quote Originally Posted by cdriza View Post


linux has c++ tho

you know that

rite?
lol, every fucking operating system under the sun uses C++.
#6 · 11y ago
SU
suchisgood
Quote Originally Posted by Siknik64 View Post
lol, every fucking operating system under the sun uses C++.
Except Linux that uses L++

L++ = Linux plus plus
C++ = Computer plus plus (not linux)
#7 · 11y ago
NI
NiStyleR
Hmh, i want to bypass sv_allowcslua, how i can do this?
#8 · 11y ago
ZE
ZER0MEM0RY
Computer plus plus DD
#9 · 11y ago
AZ
Azrius
chicken plus plus
#10 · 11y ago
IM
Im Friendly
sponsered by "cdriza plus plus"
#11 · 11y ago
KO
Kona-chan
Quote Originally Posted by ZER0MEM0RY View Post
Dll is like an exe, basically they are not so different, they have same kind of architecture, dll just cannot be executed directly.
yeah but no
dlls are used to store ressources
executables are not meant for this

- - - Updated - - -

Quote Originally Posted by cdriza View Post


linux has c++ tho

you know that

rite?
even if you compile your module under linux, you'll have to get rid of windows api and fix the entry point to work with linux
it's not just that easy
#12 · 11y ago
ZE
ZER0MEM0RY
Quote Originally Posted by Kona-chan View Post
yeah but no
dlls are used to store ressources
executables are not meant for this

- - - Updated - - -



even if you compile your module under linux, you'll have to get rid of windows api and fix the entry point to work with linux
it's not just that easy
Yes because basically the term "programming a computer" means using operating system's API to execute the code you specified, this API is different in every operating system. ELF and PE Architectures are different, they have entirely different sections and so on. You could think it like this: Writing a story in English and then have a foreigner that does not speak english trying to understand what you wrote. PE format is gibberish to Unix based systems.

- - - Updated - - -

Quote Originally Posted by Kona-chan View Post
yeah but no
dlls are used to store ressources
executables are not meant for this

- - - Updated - - -



even if you compile your module under linux, you'll have to get rid of windows api and fix the entry point to work with linux
it's not just that easy
Well simply you could not compile PE code to ELF in ELF system because the missing kernel32.lib, user32.lib, gdi32.lib, ntdll.lib which is actually the win32API and Native API. You need those components to be linked in your program, else you cannot directly use win or Native API
#13 · 11y ago
Goodfeet
Goodfeet
You'll be better off dual booting your pc with Windows 8.1 AND Linux Mint. And use KMSPico for activating Windows.
#14 · 11y ago
MeepDarknessMeep
MeepDarknessMeep
Quote Originally Posted by Goodfeet View Post
You'll be better off dual booting your pc with Windows 8.1 AND Linux Mint. And use KMSPico for activating Windows.
wtf why windows 8.1 are you dumb
#15 · 11y ago
Posts 1–15 of 21 · Page 1 of 2

Post a Reply

Similar Threads

  • Inject dll.By heroes213 in WolfTeam General
    6Last post 18y ago
  • [help] could't inject dllBy chiknwang in Combat Arms Hacks & Cheats
    17Last post 18y ago
  • could not inject.dllBy oneshot614 in Combat Arms Hacks & Cheats
    14Last post 17y ago
  • [xp users]how to fix cannot inject dll (this different)By hotfudge2100 in Combat Arms Hacks & Cheats
    10Last post 17y ago
  • [Fixes] MPGH 1.05 Pub Hack "Failed to inject dll"By hackerko in Combat Arms Hacks & Cheats
    3Last post 17y ago

Tags for this Thread

#bypass#dll#garry's mod#help#linux