So here is what i want to do : I have a lua script here is the code
if ( i == "1" )
then
io.write("Please provide the PHP reverse shell path : ")
local rev_shell_path = io.read()
local hex_edit = os.execute("hexeditor " .. rev_shell_path )
local sendkeys = os.execute("python3 src/sendkeys.py")
end
the job of this code is to run hexedit and then run a python script which uses pyautogui to send some keys which are needed to automate the task of editing the hex codes. the problem here that for sendkeys.py script to run hexeditor must end or get killed. How can i run them at the same time without ending hexeditor ?