-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxfreerdp.py
55 lines (47 loc) · 2.38 KB
/
xfreerdp.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
import subprocess
class CMEModule:
name = "xfreerdp"
description = "Remotely check if RDP connection is possible using xfreerdp"
supported_protocols = ["smb"]
opsec_safe= True
multiple_hosts = True
def options(self, context, module_options):
"""
"""
def on_admin_login(self, context, connection):
domain = connection.domain
username = connection.username
host = connection.host
password = getattr(connection, "password", "")
nthash = getattr(connection, "nthash", "")
hostname = connection.hostname
if password == "":
command = f'xfreerdp /v:{host} +auth-only /d:{domain} /u:{username} /pth:{nthash} /cert-ignore'
showcommand = f'xfreerdp /v:{host} /d:{domain} /u:{username} /p:{nthash} /cert-ignore'
try:
output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT)
success_login_yes_rdp = "Authentication only, exit status 0"
if success_login_yes_rdp in output.decode('utf-8'):
context.log.success(f"Connection successfuly in RDP using provided credentials.")
context.log.success(showcommand)
else:
None
#context.log.error("Authentication error using xfreerdp")
except subprocess.CalledProcessError as e:
None
#context.log.error("Authentication error using xfreerdp.")
else:
command = f'xfreerdp /v:{host} +auth-only /d:{domain} /u:{username} /p:{password} /cert-ignore'
showcommand = f'xfreerdp /v:{host} /d:{domain} /u:{username} /p:{password} /cert-ignore'
try:
output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT)
success_login_yes_rdp = "Authentication only, exit status 0"
if success_login_yes_rdp in output.decode('utf-8'):
context.log.success(f"Connection successfuly in RDP using provided credentials.")
context.log.success(showcommand)
else:
None
#context.log.error("Authentication error using xfreerdp")
except subprocess.CalledProcessError as e:
#context.log.error("Authentication error using xfreerdp.")
None