As for now I just made quick hacky workaround to bypass Easy Anti-Cheat for Star Citizen.
It will set system environment variable EOS_USE_ANTICHEATCLIENTNULL=1 for RSI launcher and will remove it after RSI launcher is closed.
Paste folowing to script startlauncher.cmd in Cloud Imperium Games\RSI Launcher
launcher directory then set shortcut to the script when using VorpX:
@echo off
ECHO Preparing Star Citizen Launcher for VorpX...
ECHO Will run in User Elevated mode for bypassing Easy Anti-Cheat in system variables.
ECHO You will be asked for elevated commands confirmation multiple times.
powershell -Command "&{start-process -verb RunAs -filepath "setx" -ArgumentList '/M EOS_USE_ANTICHEATCLIENTNULL 1'}"
SET EOS_USE_ANTICHEATCLIENTNULL=1
ECHO Runing RSI Launcher...
CMD /c .\"RSI Launcher.exe"
SET EOS_USE_ANTICHEATCLIENTNULL=""
ECHO Cleaning up...
powershell -Command "&{start-process -verb RunAs -filepath "setx" -ArgumentList '/M EOS_USE_ANTICHEATCLIENTNULL ""';start-process -verb RunAs -filepath "REG " -ArgumentList 'delete "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment" /F /V EOS_USE_ANTICHEATCLIENTNULL}"'}"