From 1c37ba3301769dde2c6aadadac3a411a88d7e6d3 Mon Sep 17 00:00:00 2001 From: spicesouls <59148900+spicesouls@users.noreply.github.com> Date: Sat, 6 Feb 2021 16:02:30 +0000 Subject: [PATCH] Update templates.py --- src/templates.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/templates.py b/src/templates.py index 307505a..8810866 100644 --- a/src/templates.py +++ b/src/templates.py @@ -7,6 +7,7 @@ def cmd(payload, delay): instructions = [] # Open cmd as Admin + instructions.append("DELAY 1000") instructions.append("GUI r") instructions.append("DELAY 500") instructions.append("STRING powershell Start-Process cmd -Verb runAs") @@ -35,6 +36,7 @@ def powershell(payload, delay): instructions = [] # Open cmd as Admin + instructions.append("DELAY 1000") instructions.append("GUI r") instructions.append("DELAY 500") instructions.append("STRING powershell Start-Process cmd -Verb runAs") @@ -67,6 +69,7 @@ def notepad(payload, delay): instructions = [] # Open Notepad + instructions.append("DELAY 1000") instructions.append("GUI r") instructions.append("DELAY 500") instructions.append("STRING notepad")