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 › Other Programming › Reverse Engineering › Editing a .exe

QuestionEditing a .exe

Posts 1–15 of 18 · Page 1 of 2
ET
ETHerthethaethaetheh
Editing a .exe
Hey!
I found a good program, and i want to upload it to here on mpgh, but there are two sites that show up in the program interface. Is there a way to edit or delete them out? I opened it with "PE Explorer", which was the same as "Resource Hacker" but couldnt find what i needed to remove. Also tried ".Net Reflector", but i cant edit with that . People will probbably like the program and it would be good for my own education.
Please help!
Thanks!
#1 · 9y ago
ET
ETHerthethaethaetheh
I have decided to give up on this, as i can't find a real solution for this... Everyone says that this is impossible.
#2 · 9y ago
Zaczero
Zaczero
how to edit native executable:
find bytes you want to change
open .exe in hex editor and change old bytes to new ones
done

http://www.mpgh.net/forum/showthread.php?t=1181373
my league of legends patcher is working this way
#3 · 9y ago
ET
ETHerthethaethaetheh
Quote Originally Posted by Zaczero View Post
how to edit native executable:
find bytes you want to change
open .exe in hex editor and change old bytes to new ones
done

http://www.mpgh.net/forum/showthread.php?t=1181373
my league of legends patcher is working this way
I'm not good at coding n stuff like that, so i don't know how to find out which bytes i need to change..
And what i want to change, pretty much edit out words that show up in the .exe program, when i edit it.
I do not have the source code, and don't have contacts with the original coder of the program...
halp
#4 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by gusitis00 View Post
I'm not good at coding n stuff like that, so i don't know how to find out which bytes i need to change..
And what i want to change, pretty much edit out words that show up in the .exe program, when i edit it.
I do not have the source code, and don't have contacts with the original coder of the program...
halp
you don't need source code
it's called reverse engineering
to reverse apps you use debuggers
read on google about it
#5 · edited 9y ago · 9y ago
ET
ETHerthethaethaetheh
Quote Originally Posted by Zaczero View Post


you don't need source code
it's called reverse engineering
to reverse apps you use debuggers
read on google about it
I have read a lot in these 2, 3 days and have gotten myself Olly, IDA Pro, PE Explorer, Resource Tuner, HexEdit, Vbsedit and nothing has gottem me what i want - edit out words from the exe...
Editing strings n stuff doesn't seem to fix my problem, I don't really know how this works, because im not gonna go full-on learn coding now, because i wouldn't use this too much, but yah.. I wanted some help from those, who know more about coding.
Maybe i just should go full-on and learn coding, we'll see..

- - - Updated - - -

Also just tried opening the exe with JetBrains dotPeek and exporting it to Visual Basic 2015 project, but when i open the project it's blank..

- - - Updated - - -

And by editing the .exe i mean literally editing the text that is showin in one of the tabs in the program...
Decompilers n stuff just show and allow me to edit the code, the commands, but i need to change text that shows up in the program..
#6 · 9y ago
Zaczero
Zaczero
Quote Originally Posted by gusitis00 View Post
I have read a lot in these 2, 3 days and have gotten myself Olly, IDA Pro, PE Explorer, Resource Tuner, HexEdit, Vbsedit and nothing has gottem me what i want - edit out words from the exe...
Editing strings n stuff doesn't seem to fix my problem, I don't really know how this works, because im not gonna go full-on learn coding now, because i wouldn't use this too much, but yah.. I wanted some help from those, who know more about coding.
Maybe i just should go full-on and learn coding, we'll see..

- - - Updated - - -

Also just tried opening the exe with JetBrains dotPeek and exporting it to Visual Basic 2015 project, but when i open the project it's blank..

- - - Updated - - -

And by editing the .exe i mean literally editing the text that is showin in one of the tabs in the program...
Decompilers n stuff just show and allow me to edit the code, the commands, but i need to change text that shows up in the program..
with dotPeek you can only decompile unprotected .NET apps.
dnSpy is better for this job in my opinion

you can edit a text with debuggers
you have to list all string and get their position and chage them
#7 · 9y ago
ET
ETHerthethaethaetheh
Quote Originally Posted by Zaczero View Post


with dotPeek you can only decompile unprotected .NET apps.
dnSpy is better for this job in my opinion

you can edit a text with debuggers
you have to list all string and get their position and chage them
I got dnSpy, couldn't find what i needed, exported it to VB and got 253 errors. This is really getting me nowhere. Mind addin me on skype?
#8 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by gusitis00 View Post
I got dnSpy, couldn't find what i needed, exported it to VB and got 253 errors. This is really getting me nowhere. Mind addin me on skype?
Still interested in this? If so I can help, editing text is usually pretty simple.
#9 · 9y ago
ET
ETHerthethaethaetheh
Quote Originally Posted by Nimboso View Post
Still interested in this? If so I can help, editing text is usually pretty simple.
Yea, sure. I added you on skype.
#10 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by gusitis00 View Post
Yea, sure. I added you on skype.
Right on, I'll get back to you tonight some time.
#11 · 9y ago
TH
TheHomieKOS
if ur just wanting to get rid of the sites, what about adding a .py script or something that blocks them in the Hosts file?
#12 · 9y ago
Nimboso
Nimboso
He wants to remove the URLs from the program, not just make them non-visitable.
#13 · 9y ago
WA
WasserEsser
Just get the xrefs for the url strings and edit the functions.
#14 · 9y ago
Nimboso
Nimboso
Quote Originally Posted by WasserEsser View Post
Just get the xrefs for the url strings and edit the functions.
Even easier, open it in a hex editor and just overwrite them with garbage.
#15 · 9y ago
Posts 1–15 of 18 · Page 1 of 2

Post a Reply

Similar Threads

  • Packet editing javaw.exe programsBy end360 in Game Hacking Tutorials
    1Last post 11y ago
  • How do I edit gamelauncher.exeBy rosti93 in MapleStory Discussions
    0Last post 12y ago
  • Edit BlackShot.exe in system folder .By aimanmuluk in Blackshot Help
    1Last post 13y ago
  • Recompiling and editing minecraft.exeBy Dave84311 in Minecraft Tutorials
    3Last post 14y ago
  • Undetectable Leveling Hack by Hex-Editing WarRock.exeBy cr4sh08 in WarRock - International Hacks
    9Last post 18y ago

Tags for this Thread

#delete#edit#help#program#programming#remove