/usr/lib/python2.7/dist-packages/impacket/smbconnection.py is in python-impacket 0.9.12-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 | # Copyright (c) 2003-2012 CORE Security Technologies)
#
# This software is provided under under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
# $Id: smbconnection.py 1126 2014-01-27 20:22:33Z bethus@gmail.com $
#
# Author: Alberto Solino (beto@coresecurity.com)
#
# Description:
#
# Wrapper class for SMB1/2/3 so it's transparent for the client.
# You can still play with the low level methods (version dependant)
# by calling getSMBServer()
#
import ntpath
import string
import socket
from impacket import smb, smb3, nmb, nt_errors
from smb3structs import *
# So the user doesn't need to import smb, the smb3 are already in here
SMB_DIALECT = smb.SMB_DIALECT
class SMBConnection():
"""
SMBConnection class - beto
:param string remoteName: name of the remote host, can be it's NETBIOS name, IP or *\*SMBSERVER*. If the later, and port is 139, the library will try to get the target's server name.
:param string remoteHost: target server's remote address (IPv4, IPv6)
:param string/optional myName: client's NETBIOS name
:param integer/optional sess_port: target port to connect
:param integer/optional timeout: timeout in seconds when receiving packets
:param optional preferredDialect: the dialect desired to talk with the target server. If not specified the highest one available will be used
:return: a SMBConnection instance, if not raises a SessionError exception
"""
def __init__(self, remoteName='', remoteHost='', myName = None, sess_port = 445, timeout=60, preferredDialect = None, existingConnection = None):
self._SMBConnection = 0
self._dialect = ''
self._nmbSession = 0
hostType = nmb.TYPE_SERVER
if existingConnection is not None:
# Existing Connection must be a smb or smb3 instance
assert ( isinstance(existingConnection,smb.SMB) or isinstance(existingConnection, smb3.SMB3))
self._SMBConnection = existingConnection
return
##preferredDialect = smb.SMB_DIALECT
if preferredDialect is None:
# If no preferredDialect sent, we try the highest available one.
packet = self._negotiateSession(myName, remoteName, remoteHost, sess_port, timeout)
if packet[0] == '\xfe':
# Answer is SMB2 packet
self._SMBConnection = smb3.SMB3(remoteName, remoteHost, myName, hostType, sess_port, timeout, session = self._nmbSession )
else:
# Answer is SMB packet, sticking to SMBv1
self._SMBConnection = smb.SMB(remoteName, remoteHost, myName, hostType, sess_port, timeout, session = self._nmbSession, negPacket = packet)
else:
if preferredDialect == smb.SMB_DIALECT:
self._SMBConnection = smb.SMB(remoteName, remoteHost, myName, hostType, sess_port, timeout)
elif preferredDialect in [SMB2_DIALECT_002, SMB2_DIALECT_21, SMB2_DIALECT_30]:
self._SMBConnection = smb3.SMB3(remoteName, remoteHost, myName, hostType, sess_port, timeout, preferredDialect = preferredDialect)
else:
print "Unknown dialect ", preferredDialect
raise
def _negotiateSession(self, myName, remoteName, remoteHost, sess_port, timeout, extended_security = True):
# Here we follow [MS-SMB2] negotiation handshake trying to understand what dialects
# (including SMB1) is supported on the other end.
if not myName:
myName = socket.gethostname()
i = string.find(myName, '.')
if i > -1:
myName = myName[:i]
# If port 445 and the name sent is *SMBSERVER we're setting the name to the IP. This is to help some old applications still believing
# *SMSBSERVER will work against modern OSes. If port is NETBIOS_SESSION_PORT the user better know about *SMBSERVER's limitations
if sess_port == 445 and remoteName == '*SMBSERVER':
remoteName = remoteHost
self._nmbSession = nmb.NetBIOSTCPSession(myName, remoteName, remoteHost, nmb.TYPE_SERVER, sess_port, timeout)
smbp = smb.NewSMBPacket()
negSession = smb.SMBCommand(smb.SMB.SMB_COM_NEGOTIATE)
if extended_security == True:
smbp['Flags2']=smb.SMB.FLAGS2_EXTENDED_SECURITY
negSession['Data'] = '\x02NT LM 0.12\x00\x02SMB 2.002\x00\x02SMB 2.???\x00'
smbp.addCommand(negSession)
self._nmbSession.send_packet(str(smbp))
r = self._nmbSession.recv_packet(timeout)
return r.get_trailer()
def getSMBServer(self):
"""
returns the SMB/SMB3 instance being used. Useful for calling low level methods
"""
return self._SMBConnection
def getDialect(self):
return self._SMBConnection.getDialect()
def getServerName(self):
return self._SMBConnection.get_server_name()
def getRemoteHost(self):
return self._SMBConnection.get_remote_host()
def getServerDomain(self):
return self._SMBConnection.get_server_domain()
def getServerOS(self):
return self._SMBConnection.get_server_os()
def doesSupportNTLMv2(self):
return self._SMBConnection.doesSupportNTLMv2()
def isLoginRequired(self):
return self._SMBConnection.is_login_required()
def getCredentials(self):
return self._SMBConnection.getCredentials()
def login(self, user, password, domain = '', lmhash = '', nthash = ''):
"""
logins into the target system
:param string user: username
:param string password: password for the user
:param string domain: domain where the account is valid for
:param string lmhash: LMHASH used to authenticate using hashes (password is not used)
:param string nthash: NTHASH used to authenticate using hashes (password is not used)
:return: None, raises a Session Error if error.
"""
try:
return self._SMBConnection.login(user, password, domain, lmhash, nthash)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def isGuestSession(self):
try:
return self._SMBConnection.isGuestSession()
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def logoff(self):
try:
return self._SMBConnection.logoff()
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def connectTree(self,share):
if self.getDialect() == smb.SMB_DIALECT:
share = ntpath.basename(share)
share = '\\\\' + self.getRemoteHost() + '\\' + share
try:
return self._SMBConnection.connect_tree(share)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def disconnectTree(self, treeId):
try:
return self._SMBConnection.disconnect_tree(treeId)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def listShares(self):
"""
get a list of available shares at the connected target
:return: a list containing dict entries for each share, raises exception if error
"""
# Get the shares through RPC
from impacket.dcerpc.v5 import transport, rpcrt, srvs
rpctransport = transport.SMBTransport(self.getRemoteHost(), self.getRemoteHost(), filename = r'\srvsvc', smb_connection = self)
dce = rpctransport.get_dce_rpc()
dce.connect()
dce.bind(srvs.MSRPC_UUID_SRVS)
resp = srvs.hNetrShareEnum(dce, 1)
return resp['InfoStruct']['ShareInfo']['Level1']['Buffer']
def listPath(self, shareName, path, password = None):
"""
list the files/directories under shareName/path
:param string shareName: a valid name for the share where the files/directories are going to be searched
:param string path: a base path relative to shareName
:return: a list containing smb.SharedFile items, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.list_path(shareName, path, password)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def createFile(self, treeId, pathName, desiredAccess = GENERIC_ALL, shareMode = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, creationOption = FILE_NON_DIRECTORY_FILE, creationDisposition = FILE_OVERWRITE_IF , fileAttributes = FILE_ATTRIBUTE_NORMAL, impersonationLevel = SMB2_IL_IMPERSONATION, securityFlags = 0, oplockLevel = SMB2_OPLOCK_LEVEL_NONE, createContexts = None):
"""
creates a remote file
:param HANDLE treeId: a valid handle for the share where the file is to be created
:param string pathName: the path name of the file to create
:return: a valid file descriptor, if not raises a SessionError exception.
"""
if self.getDialect() == smb.SMB_DIALECT:
pathName = string.replace(pathName, '/', '\\')
ntCreate = smb.SMBCommand(smb.SMB.SMB_COM_NT_CREATE_ANDX)
ntCreate['Parameters'] = smb.SMBNtCreateAndX_Parameters()
ntCreate['Data'] = smb.SMBNtCreateAndX_Data()
ntCreate['Parameters']['FileNameLength']= len(pathName)
ntCreate['Parameters']['AccessMask'] = desiredAccess
ntCreate['Parameters']['FileAttributes']= fileAttributes
ntCreate['Parameters']['ShareAccess'] = shareMode
ntCreate['Parameters']['Disposition'] = creationDisposition
ntCreate['Parameters']['CreateOptions'] = creationOption
ntCreate['Parameters']['Impersonation'] = impersonationLevel
ntCreate['Parameters']['SecurityFlags'] = securityFlags
ntCreate['Parameters']['CreateFlags'] = 0x16
ntCreate['Data']['FileName'] = pathName
if createContexts is not None:
print "CreateContexts not supported in SMB1"
try:
return self._SMBConnection.nt_create_andx(treeId, pathName, cmd = ntCreate)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
else:
try:
return self._SMBConnection.create(treeId, pathName, desiredAccess, shareMode, creationOption, creationDisposition, fileAttributes, impersonationLevel, securityFlags, oplockLevel, createContexts)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def openFile(self, treeId, pathName, desiredAccess = FILE_READ_DATA | FILE_WRITE_DATA, shareMode = FILE_SHARE_READ, creationOption = FILE_NON_DIRECTORY_FILE, creationDisposition = FILE_OPEN, fileAttributes = FILE_ATTRIBUTE_NORMAL, impersonationLevel = SMB2_IL_IMPERSONATION, securityFlags = 0, oplockLevel = SMB2_OPLOCK_LEVEL_NONE, createContexts = None):
"""
opens a remote file
:param HANDLE treeId: a valid handle for the share where the file is to be opened
:param string pathName: the path name to open
:return: a valid file descriptor, if not raises a SessionError exception.
"""
if self.getDialect() == smb.SMB_DIALECT:
pathName = string.replace(pathName, '/', '\\')
ntCreate = smb.SMBCommand(smb.SMB.SMB_COM_NT_CREATE_ANDX)
ntCreate['Parameters'] = smb.SMBNtCreateAndX_Parameters()
ntCreate['Data'] = smb.SMBNtCreateAndX_Data()
ntCreate['Parameters']['FileNameLength']= len(pathName)
ntCreate['Parameters']['AccessMask'] = desiredAccess
ntCreate['Parameters']['FileAttributes']= fileAttributes
ntCreate['Parameters']['ShareAccess'] = shareMode
ntCreate['Parameters']['Disposition'] = creationDisposition
ntCreate['Parameters']['CreateOptions'] = creationOption
ntCreate['Parameters']['Impersonation'] = impersonationLevel
ntCreate['Parameters']['SecurityFlags'] = securityFlags
ntCreate['Parameters']['CreateFlags'] = 0x16
ntCreate['Data']['FileName'] = pathName
if createContexts is not None:
print "CreateContexts not supported in SMB1"
try:
return self._SMBConnection.nt_create_andx(treeId, pathName, cmd = ntCreate)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
else:
try:
return self._SMBConnection.create(treeId, pathName, desiredAccess, shareMode, creationOption, creationDisposition, fileAttributes, impersonationLevel, securityFlags, oplockLevel, createContexts)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def writeFile(self, treeId, fileId, data, offset=0):
"""
writes data to a file
:param HANDLE treeId: a valid handle for the share where the file is to be written
:param HANDLE fileId: a valid handle for the file
:param string data: buffer with the data to write
:param integer offset: offset where to start writing the data
:return: amount of bytes written, if not raises a SessionError exception.
"""
try:
return self._SMBConnection.writeFile(treeId, fileId, data, offset)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def readFile(self, treeId, fileId, offset = 0, bytesToRead = None):
"""
reads data from a file
:param HANDLE treeId: a valid handle for the share where the file is to be read
:param HANDLE fileId: a valid handle for the file to be read
:param integer offset: offset where to start reading the data
:param integer bytesToRead: amount of bytes to read. If None, it will read Dialect['MaxBufferSize'] bytes.
:return: the data read, if not raises a SessionError exception.
"""
try:
return self._SMBConnection.read_andx(treeId, fileId, offset, bytesToRead)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def closeFile(self, treeId, fileId):
"""
closes a file handle
:param HANDLE treeId: a valid handle for the share where the file is to be opened
:param HANDLE fileId: a valid handle for the file/directory to be closed
:return: None, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.close(treeId, fileId)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def deleteFile(self, shareName, pathName):
"""
removes a file
:param string shareName: a valid name for the share where the file is to be deleted
:param string pathName: the path name to remove
:return: None, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.remove(shareName, pathName)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def createDirectory(self, shareName, pathName ):
"""
creates a directory
:param string shareName: a valid name for the share where the directory is to be created
:param string pathName: the path name or the directory to create
:return: None, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.mkdir(shareName, pathName)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def deleteDirectory(self, shareName, pathName):
"""
deletes a directory
:param string shareName: a valid name for the share where directory is to be deleted
:param string pathName: the path name or the directory to delete
:return: None, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.rmdir(shareName, pathName)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def waitNamedPipe(self, treeId, pipeName, timeout = 5):
"""
waits for a named pipe
:param HANDLE treeId: a valid handle for the share where the pipe is
:param string pipeName: the pipe name to check
:param integer timeout: time to wait for an answer
:return: None, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.waitNamedPipe(treeId, pipeName, timeout = timeout)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def transactNamedPipe(self, treeId, fileId, data, waitAnswer = True):
"""
writes to a named pipe using a transaction command
:param HANDLE treeId: a valid handle for the share where the pipe is
:param HANDLE fileId: a valid handle for the pipe
:param string data: buffer with the data to write
:param boolean waitAnswer: whether or not to wait for an answer
:return: None, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.TransactNamedPipe(treeId, fileId, data, waitAnswer = waitAnswer)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def transactNamedPipeRecv(self):
"""
reads from a named pipe using a transaction command
:return: data read, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.TransactNamedPipeRecv()
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def writeNamedPipe(self, treeId, fileId, data, waitAnswer = True):
"""
writes to a named pipe
:param HANDLE treeId: a valid handle for the share where the pipe is
:param HANDLE fileId: a valid handle for the pipe
:param string data: buffer with the data to write
:param boolean waitAnswer: whether or not to wait for an answer
:return: None, raises a SessionError exception if error.
"""
try:
if self.getDialect() == smb.SMB_DIALECT:
return self._SMBConnection.write_andx(treeId, fileId, data, wait_answer = waitAnswer, write_pipe_mode = True)
else:
return self.writeFile(treeId, fileId, data, 0)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def readNamedPipe(self,treeId, fileId, bytesToRead = None ):
"""
read from a named pipe
:param HANDLE treeId: a valid handle for the share where the pipe resides
:param HANDLE fileId: a valid handle for the pipe
:param integer bytestToRead: amount of data to read
:param boolean waitAnswer: whether or not to wait for an answer
:return: None, raises a SessionError exception if error.
"""
try:
return self.readFile(treeId, fileId, bytesToRead = bytesToRead)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def getFile(self, shareName, pathName, callback, shareAccessMode = None):
"""
downloads a file
:param string shareName: name for the share where the file is to be retrieved
:param string pathName: the path name to retrieve
:param callback callback:
:return: None, raises a SessionError exception if error.
"""
try:
if shareAccessMode is None:
# if share access mode is none, let's the underlying API deals with it
return self._SMBConnection.retr_file(shareName, pathName, callback)
else:
return self._SMBConnection.retr_file(shareName, pathName, callback, shareAccessMode = shareAccessMode)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def putFile(self, shareName, pathName, callback, shareAccessMode = None):
"""
uploads a file
:param string shareName: name for the share where the file is to be uploaded
:param string pathName: the path name to upload
:param callback callback:
:return: None, raises a SessionError exception if error.
"""
try:
if shareAccessMode is None:
# if share access mode is none, let's the underlying API deals with it
return self._SMBConnection.stor_file(shareName, pathName, callback)
else:
return self._SMBConnection.stor_file(shareName, pathName, callback, shareAccessMode)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def rename(self, shareName, oldPath, newPath):
"""
rename a file/directory
:param string shareName: name for the share where the files/directories are
:param string oldPath: the old path name or the directory/file to rename
:param string newPath: the new path name or the directory/file to rename
:return: True, raises a SessionError exception if error.
"""
try:
return self._SMBConnection.rename(shareName, oldPath, newPath)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def setTimeout(self, timeout):
try:
return self._SMBConnection.set_timeout(timeout)
except (smb.SessionError, smb3.SessionError), e:
raise SessionError(e.get_error_code())
def getSessionKey(self):
if self.getDialect() == smb.SMB_DIALECT:
return self._SMBConnection.get_session_key()
else:
return self._SMBConnection.getSessionKey()
def setSessionKey(self, key):
if self.getDialect() == smb.SMB_DIALECT:
return self._SMBConnection.set_session_key(key)
else:
return self._SMBConnection.setSessionKey(key)
class SessionError(Exception):
"""
This is the exception every client should catch regardless of the underlying
SMB version used. We'll take care of that. NETBIOS exceptions are NOT included,
since all SMB versions share the same NETBIOS instances.
"""
def __init__( self, error = 0, packet=0):
Exception.__init__(self)
self.error = error
self.packet = packet
def getErrorCode( self ):
return self.error
def getErrorPacket( self ):
return self.packet
def getErrorString( self ):
return nt_errors.ERROR_MESSAGES[self.error]
def __str__( self ):
return 'SMB SessionError: %s(%s)' % (nt_errors.ERROR_MESSAGES[self.error])
|