forked from EmpireProject/Empire
-
-
Notifications
You must be signed in to change notification settings - Fork 585
/
Copy pathcomputerdetails.py
109 lines (98 loc) · 4.15 KB
/
computerdetails.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
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 = "",
):
# read in the common module source code
script, err = main_menu.modulesv2.get_module_source(
module_name=module.script_path,
obfuscate=obfuscate,
obfuscate_command=obfuscation_command,
)
if err:
return handle_error_message(err)
script_end = ""
outputf = params.get("OutputFunction", "Out-String")
if params["4624"].lower() == "true":
script_end += "$SecurityLog = Get-EventLog -LogName Security; $Filtered4624 = Find-4624Logons $SecurityLog;"
script_end += 'Write-Output "Event ID 4624 (Logon):`n";'
script_end += "Write-Output $Filtered4624.Values"
script_end += f" | {outputf}"
return main_menu.modulesv2.finalize_module(
script=script,
script_end=script_end,
obfuscate=obfuscate,
obfuscation_command=obfuscation_command,
)
if params["4648"].lower() == "true":
script_end += "$SecurityLog = Get-EventLog -LogName Security; $Filtered4648 = Find-4648Logons $SecurityLog;"
script_end += 'Write-Output "Event ID 4648 (Explicit Credential Logon):`n";'
script_end += "Write-Output $Filtered4648.Values"
script_end += f" | {outputf}"
return main_menu.modulesv2.finalize_module(
script=script,
script_end=script_end,
obfuscate=obfuscate,
obfuscation_command=obfuscation_command,
)
if params["AppLocker"].lower() == "true":
script_end += "$AppLockerLogs = Find-AppLockerLogs;"
script_end += 'Write-Output "AppLocker Process Starts:`n";'
script_end += "Write-Output $AppLockerLogs.Values"
script_end += f" | {outputf}"
return main_menu.modulesv2.finalize_module(
script=script,
script_end=script_end,
obfuscate=obfuscate,
obfuscation_command=obfuscation_command,
)
if params["PSScripts"].lower() == "true":
script_end += "$PSLogs = Find-PSScriptsInPSAppLog;"
script_end += 'Write-Output "PowerShell Script Executions:`n";'
script_end += "Write-Output $PSLogs.Values"
script_end += f" | {outputf}"
return main_menu.modulesv2.finalize_module(
script=script,
script_end=script_end,
obfuscate=obfuscate,
obfuscation_command=obfuscation_command,
)
if params["SavedRDP"].lower() == "true":
script_end += "$RdpClientData = Find-RDPClientConnections;"
script_end += 'Write-Output "RDP Client Data:`n";'
script_end += "Write-Output $RdpClientData.Values"
script_end += f" | {outputf}"
return main_menu.modulesv2.finalize_module(
script=script,
script_end=script_end,
obfuscate=obfuscate,
obfuscation_command=obfuscation_command,
)
script_end += "Get-ComputerDetails -Limit " + str(params["Limit"])
if outputf == "Out-String":
script_end += (
" -ToString | "
+ '%{$_ + "`n"};"`n'
+ str(module.name.split("/")[-1])
+ ' completed!"'
)
else:
script_end += (
f" | {outputf} | "
+ '%{$_ + "`n"};"`n'
+ str(module.name.split("/")[-1])
+ ' completed!"'
)
return main_menu.modulesv2.finalize_module(
script=script,
script_end=script_end,
obfuscate=obfuscate,
obfuscation_command=obfuscation_command,
)