From 7a1058cb6d2193e92de02ea8964f53a962539dd1 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Thu, 18 Feb 2016 14:16:47 -0500 Subject: [PATCH] Block local script execution bug See:
https://dev.arma3.com/post/spotrep-00045
Fixed: Exploit with inGameUISetEventHandler granted a menu hack
possibility
Still not fixed in A20A as of 1.63.131129 --- SQF/dayz_code/system/antihack.sqf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SQF/dayz_code/system/antihack.sqf b/SQF/dayz_code/system/antihack.sqf index 54ee7b5f2..1aef2b95a 100644 --- a/SQF/dayz_code/system/antihack.sqf +++ b/SQF/dayz_code/system/antihack.sqf @@ -1,3 +1,8 @@ +/* Block local script execution bug. Still not fixed in A20A as of 1.63.131129 */ +inGameUISetEventHandler ["PrevAction","false"]; +inGameUISetEventHandler ["NextAction","false"]; +inGameUISetEventHandler ["Action","false"]; + /* Anti-Teleport - Created By Razor / Refactored By Alby & CopyPasted to Epoch by Skaronator */