We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f45baf8 commit c77800bCopy full SHA for c77800b
1 file changed
nxc/modules/ntlm_reflection.py
@@ -74,7 +74,7 @@ def on_login(self, context, connection):
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']})")
76
else:
77
- context.log.highlight(f"VULNERABLE (can relay SMB to any others protocols except SMB on {self.context.log.extra['host']})")
+ context.log.highlight(f"VULNERABLE (can relay SMB to other protocols except SMB on {self.context.log.extra['host']})")
78
except SessionError as e:
79
if "STATUS_OBJECT_NAME_NOT_FOUND" in str(e):
80
self.context.log.info(f"RemoteRegistry is probably deactivated: {e}")
0 commit comments