@@ -26,6 +26,7 @@ from smb2.filesystem_info import *
from smb2.dir_info import *
from smb2.ntlmssp import *
+
class File(object):
def __init__(self, path, flags, at, **kwargs):
@@ -81,6 +82,7 @@ class Server(object):
dialect = 0
def __init__(self, s, **kwargs):
+ self.errc = 0
self._s = s
self._sesid = 1
self._treeid = 1
@@ -348,6 +350,16 @@ class Server(object):
#
# Create/Open
#
+ #print('PDU', pdu)
+ if pdu['desired_access'] == 0x81:
+ print('YEAH')
+ self.errc = self.errc + 1
+ if self.errc == 3:
+ print('Generate error')
+ self.errc = 0
+ self._compound_error = Status.INVALID_PARAMETER
+ return (Status.USER_SESSION_DELETED,
+ ErrorResponse.encode({'error_data' : bytes(1)}))
if not hdr['tree_id'] in self.trees:
self._compound_error = Status.INVALID_PARAMETER
return (self._compound_error,