Add STATUS_NO_SUCH_FILE to success status
When the remote server returns a STATUS_NO_SUCH_FILE message, cme interprets the login credentials as wrong. However, impackets smbserver.py proves that this can be wrong.main
parent
b1308da93e
commit
4dc4fd72c2
|
@ -51,7 +51,8 @@ smb_error_status = [
|
|||
"STATUS_LOGON_TYPE_NOT_GRANTED",
|
||||
"STATUS_PASSWORD_EXPIRED",
|
||||
"STATUS_PASSWORD_MUST_CHANGE",
|
||||
"STATUS_ACCESS_DENIED"
|
||||
"STATUS_ACCESS_DENIED",
|
||||
"STATUS_NO_SUCH_FILE"
|
||||
]
|
||||
|
||||
def requires_smb_server(func):
|
||||
|
|
Loading…
Reference in New Issue