Skip to content

Commit d358e7d

Browse files
committed
Change to lower-case
1 parent 55c92d1 commit d358e7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

enum4linux-ng.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ def check_smb_dialects(self):
708708
SMB_DIALECTS[SMB2_DIALECT_21]:False,
709709
SMB_DIALECTS[SMB2_DIALECT_30]:False,
710710
"SMB1 only": False,
711-
"Preferred Dialect": None,
711+
"Preferred dialect": None,
712712
"SMB signing required": None
713713
}
714714

@@ -725,7 +725,7 @@ def check_smb_dialects(self):
725725

726726
# We found one supported dialect, this is also the dialect the remote host selected/preferred of the offered ones
727727
output[SMB_DIALECTS[current_dialect]] = True
728-
output["Preferred Dialect"] = SMB_DIALECTS[current_dialect]
728+
output["Preferred dialect"] = SMB_DIALECTS[current_dialect]
729729
except Exception as exc:
730730
# Currently the impacket library does not support SMB 3.02 and 3.11. Whenever a remote host only supports 3.02 or 3.11
731731
# we should end up here. This is somewhat vague, but better when nothing.

0 commit comments

Comments
 (0)