Skip to content

Commit 6e59291

Browse files
committed
Make description more precise
1 parent ea9acdc commit 6e59291

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nxc/modules/smbghost.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class NXCModule:
1414
name = "smbghost"
15-
description = "Module to check if the machine is vulnerable to SmbGhost"
15+
description = "Module to check for the SMB dialect 3.1.1 and compression capability of the host, which is an indicator for the SMBGhost vulnerability (CVE-2020-0796)."
1616
supported_protocols = ["smb"]
1717
opsec_safe = True
1818
multiple_hosts = True
@@ -28,7 +28,7 @@ def options(self, context, module_options):
2828
def on_login(self, context, connection):
2929
self.context = context
3030
if self.perform_attack(connection.host):
31-
self.context.log.highlight("VULNERABLE to SMBGhost (CVE-2020-0796)")
31+
self.context.log.highlight("Potentially vulnerable to SMBGhost (CVE-2020-0796)")
3232

3333
def perform_attack(self, target_ip):
3434
self.context.log.debug("Performing SMBGhost check...")

0 commit comments

Comments
 (0)