We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c77800b commit 1c77c64Copy full SHA for 1c77c64
1 file changed
nxc/modules/ntlm_reflection.py
@@ -72,7 +72,7 @@ def on_login(self, context, connection):
72
vuln = self.is_vulnerable(connection.server_os_major, connection.server_os_minor, connection.server_os_build, ubr)
73
if vuln:
74
if not connection.conn.isSigningRequired(): # Not vulnerable if SMB signing is enabled
75
- context.log.highlight(f"VULNERABLE (can relay SMB to any protocols on {self.context.log.extra['host']})")
+ context.log.highlight(f"VULNERABLE (can relay SMB to any protocol on {self.context.log.extra['host']})")
76
else:
77
context.log.highlight(f"VULNERABLE (can relay SMB to other protocols except SMB on {self.context.log.extra['host']})")
78
except SessionError as e:
0 commit comments