[Undetected & Release] Remote execution bypass
Hi there! MPGH im going to release Exec bypass
Enjoy
hope it helped

Tutorial
Re-place the exec.sqf in a menu
or just execute it with script executer that's all
How to save it?
Open a text file and post the code and save it as SQF file.
What that do?
Allows you to use more scripts to spawn vehicles bombs and more...

_hack = _this select 0;
_menuIndex = _this select 1;
_script = _this select 2;
_user = _this select 3;
[_hack,_menuIndex, _user] execVM format["%1%2",HDIR,_script];
_check = vars select _menuIndex;
if(_check == "2") then
{
cutText [format["%1 executed",_hack],"PLAIN DOWN"];
};
if((_check == "0") || (_check == "1")) then
{
if(_check == "0") then
{
vars set [_menuIndex, "1"];
lbSetColor[109, _menuIndex, [1,0,0,1]];
cutText [format["%1 activated",_hack],"PLAIN DOWN"];
}
else
{
vars set [_menuIndex, "0"];
lbSetColor[109, _menuIndex, [0,1,0,1]];
cutText [format["%1 deactivated",_hack],"PLAIN DOWN"];
};
};
_menuIndex = _this select 1;
_script = _this select 2;
_user = _this select 3;
[_hack,_menuIndex, _user] execVM format["%1%2",HDIR,_script];
_check = vars select _menuIndex;
if(_check == "2") then
{
cutText [format["%1 executed",_hack],"PLAIN DOWN"];
};
if((_check == "0") || (_check == "1")) then
{
if(_check == "0") then
{
vars set [_menuIndex, "1"];
lbSetColor[109, _menuIndex, [1,0,0,1]];
cutText [format["%1 activated",_hack],"PLAIN DOWN"];
}
else
{
vars set [_menuIndex, "0"];
lbSetColor[109, _menuIndex, [0,1,0,1]];
cutText [format["%1 deactivated",_hack],"PLAIN DOWN"];
};
};
hope it helped
Tutorial
Re-place the exec.sqf in a menu
or just execute it with script executer that's all
How to save it?
Open a text file and post the code and save it as SQF file.
What that do?
Allows you to use more scripts to spawn vehicles bombs and more...




