-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtds.py
1543 lines (1339 loc) · 56.4 KB
/
tds.py
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
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Impacket - Collection of Python classes for working with network protocols.
#
# SECUREAUTH LABS. Copyright (C) 2022 SecureAuth Corporation. All rights reserved.
#
# This software is provided under a slightly modified version
# of the Apache Software License. See the accompanying LICENSE file
# for more information.
#
# Description:
# [MS-TDS] & [MC-SQLR] implementation.
#
# Author:
# Alberto Solino (@agsolino)
#
# ToDo:
# [ ] Add all the tokens left
# [ ] parseRow should be rewritten and add support for all the SQL types in a
# good way. Right now it just supports a few types.
# [ ] printRows is crappy, just an easy way to print the rows. It should be
# rewritten to output like a normal SQL client
#
from __future__ import division
from __future__ import print_function
import struct
import socket
import select
import random
import binascii
import math
import datetime
import string
from impacket import ntlm, uuid, LOG
from impacket.structure import Structure
try:
from OpenSSL import SSL
except:
LOG.critical("pyOpenSSL is not installed, can't continue")
raise
# We need to have a fake Logger to be compatible with the way Impact
# prints information. Outside Impact it's just a print. Inside
# we will receive the Impact logger instance to print row information
# The rest it processed through the standard impacket logging mech.
class DummyPrint:
def logMessage(self,message):
if message == '\n':
print(message)
else:
print(message, end=' ')
# MC-SQLR Constants and Structures
SQLR_PORT = 1434
SQLR_CLNT_BCAST_EX = 0x02
SQLR_CLNT_UCAST_EX = 0x03
SQLR_CLNT_UCAST_INST= 0x04
SQLR_CLNT_UCAST_DAC = 0x0f
class SQLR(Structure):
commonHdr = (
('OpCode','B'),
)
class SQLR_UCAST_INST(SQLR):
structure = (
('Instance',':')
)
def __init__(self, data = None):
SQLR.__init__(self,data)
if data is not None:
self['OpCode'] = SQLR_CLNT_UCAST_INST
class SQLR_UCAST_DAC(SQLR):
structure = (
('Protocol', 'B=1'),
('Instance', ':'),
)
def __init__(self, data = None):
SQLR.__init__(self,data)
if data is not None:
self['OpCode'] = SQLR_CLNT_UCAST_DAC
class SQLR_Response(SQLR):
structure = (
('Size','<H'),
('_Data','_-Data','self["Size"]'),
('Data',':'),
)
class SQLErrorException(Exception):
pass
# TDS Constants and Structures
# TYPE constants
TDS_SQL_BATCH = 1
TDS_PRE_TDS_LOGIN = 2
TDS_RPC = 3
TDS_TABULAR = 4
TDS_ATTENTION = 6
TDS_BULK_LOAD_DATA = 7
TDS_TRANSACTION = 14
TDS_LOGIN7 = 16
TDS_SSPI = 17
TDS_PRE_LOGIN = 18
# Status constants
TDS_STATUS_NORMAL = 0
TDS_STATUS_EOM = 1
TDS_STATUS_RESET_CONNECTION = 8
TDS_STATUS_RESET_SKIPTRANS = 16
# Encryption
TDS_ENCRYPT_OFF = 0
TDS_ENCRYPT_ON = 1
TDS_ENCRYPT_NOT_SUP = 2
TDS_ENCRYPT_REQ = 3
# Option 2 Flags
TDS_INTEGRATED_SECURITY_ON = 0x80
TDS_INIT_LANG_FATAL = 0x01
TDS_ODBC_ON = 0x02
# Token Types
TDS_ALTMETADATA_TOKEN = 0x88
TDS_ALTROW_TOKEN = 0xD3
TDS_COLMETADATA_TOKEN = 0x81
TDS_COLINFO_TOKEN = 0xA5
TDS_DONE_TOKEN = 0xFD
TDS_DONEPROC_TOKEN = 0xFE
TDS_DONEINPROC_TOKEN = 0xFF
TDS_ENVCHANGE_TOKEN = 0xE3
TDS_ERROR_TOKEN = 0xAA
TDS_INFO_TOKEN = 0xAB
TDS_LOGINACK_TOKEN = 0xAD
TDS_NBCROW_TOKEN = 0xD2
TDS_OFFSET_TOKEN = 0x78
TDS_ORDER_TOKEN = 0xA9
TDS_RETURNSTATUS_TOKEN = 0x79
TDS_RETURNVALUE_TOKEN = 0xAC
TDS_ROW_TOKEN = 0xD1
TDS_SSPI_TOKEN = 0xED
TDS_TABNAME_TOKEN = 0xA4
# ENVCHANGE Types
TDS_ENVCHANGE_DATABASE = 1
TDS_ENVCHANGE_LANGUAGE = 2
TDS_ENVCHANGE_CHARSET = 3
TDS_ENVCHANGE_PACKETSIZE = 4
TDS_ENVCHANGE_UNICODE = 5
TDS_ENVCHANGE_UNICODE_DS = 6
TDS_ENVCHANGE_COLLATION = 7
TDS_ENVCHANGE_TRANS_START = 8
TDS_ENVCHANGE_TRANS_COMMIT = 9
TDS_ENVCHANGE_ROLLBACK = 10
TDS_ENVCHANGE_DTC = 11
# Column types
# FIXED-LEN Data Types
TDS_NULL_TYPE = 0x1F
TDS_INT1TYPE = 0x30
TDS_BITTYPE = 0x32
TDS_INT2TYPE = 0x34
TDS_INT4TYPE = 0x38
TDS_DATETIM4TYPE = 0x3A
TDS_FLT4TYPE = 0x3B
TDS_MONEYTYPE = 0x3C
TDS_DATETIMETYPE = 0x3D
TDS_FLT8TYPE = 0x3E
TDS_MONEY4TYPE = 0x7A
TDS_INT8TYPE = 0x7F
# VARIABLE-Len Data Types
TDS_GUIDTYPE = 0x24
TDS_INTNTYPE = 0x26
TDS_DECIMALTYPE = 0x37
TDS_NUMERICTYPE = 0x3F
TDS_BITNTYPE = 0x68
TDS_DECIMALNTYPE = 0x6A
TDS_NUMERICNTYPE = 0x6C
TDS_FLTNTYPE = 0x6D
TDS_MONEYNTYPE = 0x6E
TDS_DATETIMNTYPE = 0x6F
TDS_DATENTYPE = 0x28
TDS_TIMENTYPE = 0x29
TDS_DATETIME2NTYPE = 0x2A
TDS_DATETIMEOFFSETNTYPE = 0x2B
TDS_CHARTYPE = 0x2F
TDS_VARCHARTYPE = 0x27
TDS_BINARYTYPE = 0x2D
TDS_VARBINARYTYPE = 0x25
TDS_BIGVARBINTYPE = 0xA5
TDS_BIGVARCHRTYPE = 0xA7
TDS_BIGBINARYTYPE = 0xAD
TDS_BIGCHARTYPE = 0xAF
TDS_NVARCHARTYPE = 0xE7
TDS_NCHARTYPE = 0xEF
TDS_XMLTYPE = 0xF1
TDS_UDTTYPE = 0xF0
TDS_TEXTTYPE = 0x23
TDS_IMAGETYPE = 0x22
TDS_NTEXTTYPE = 0x63
TDS_SSVARIANTTYPE = 0x62
class TDSPacket(Structure):
structure = (
('Type','<B'),
('Status','<B=1'),
('Length','>H=8+len(Data)'),
('SPID','>H=0'),
('PacketID','<B=0'),
('Window','<B=0'),
('Data',':'),
)
class TDS_PRELOGIN(Structure):
structure = (
('VersionToken','>B=0'),
('VersionOffset','>H'),
('VersionLength','>H=len(self["Version"])'),
('EncryptionToken','>B=0x1'),
('EncryptionOffset','>H'),
('EncryptionLength','>H=1'),
('InstanceToken','>B=2'),
('InstanceOffset','>H'),
('InstanceLength','>H=len(self["Instance"])'),
('ThreadIDToken','>B=3'),
('ThreadIDOffset','>H'),
('ThreadIDLength','>H=4'),
('EndToken','>B=0xff'),
('_Version','_-Version','self["VersionLength"]'),
('Version',':'),
('Encryption','B'),
('_Instance','_-Instance','self["InstanceLength"]-1'),
('Instance',':'),
('ThreadID',':'),
)
def getData(self):
self['VersionOffset']=21
self['EncryptionOffset']=self['VersionOffset'] + len(self['Version'])
self['InstanceOffset']=self['EncryptionOffset'] + 1
self['ThreadIDOffset']=self['InstanceOffset'] + len(self['Instance'])
return Structure.getData(self)
class TDS_LOGIN(Structure):
structure = (
('Length','<L=0'),
('TDSVersion','>L=0x71'),
('PacketSize','<L=32764'),
('ClientProgVer','>L=7'),
('ClientPID','<L=0'),
('ConnectionID','<L=0'),
('OptionFlags1','<B=0xe0'),
('OptionFlags2','<B'),
('TypeFlags','<B=0'),
('OptionFlags3','<B=0'),
('ClientTimeZone','<L=0'),
('ClientLCID','<L=0'),
('HostNameOffset','<H'),
('HostNameLength','<H=len(self["HostName"])//2'),
('UserNameOffset','<H=0'),
('UserNameLength','<H=len(self["UserName"])//2'),
('PasswordOffset','<H=0'),
('PasswordLength','<H=len(self["Password"])//2'),
('AppNameOffset','<H'),
('AppNameLength','<H=len(self["AppName"])//2'),
('ServerNameOffset','<H'),
('ServerNameLength','<H=len(self["ServerName"])//2'),
('UnusedOffset','<H=0'),
('UnusedLength','<H=0'),
('CltIntNameOffset','<H'),
('CltIntNameLength','<H=len(self["CltIntName"])//2'),
('LanguageOffset','<H=0'),
('LanguageLength','<H=0'),
('DatabaseOffset','<H=0'),
('DatabaseLength','<H=len(self["Database"])//2'),
('ClientID','6s=b"\x01\x02\x03\x04\x05\x06"'),
('SSPIOffset','<H'),
('SSPILength','<H=len(self["SSPI"])'),
('AtchDBFileOffset','<H'),
('AtchDBFileLength','<H=len(self["AtchDBFile"])//2'),
('HostName',':'),
('UserName',':'),
('Password',':'),
('AppName',':'),
('ServerName',':'),
('CltIntName',':'),
('Database',':'),
('SSPI',':'),
('AtchDBFile',':'),
)
def __init__(self,data=None):
Structure.__init__(self,data)
if data is None:
self['UserName'] = ''
self['Password'] = ''
self['Database'] = ''
self['AtchDBFile'] = ''
def fromString(self, data):
Structure.fromString(self, data)
if self['HostNameLength'] > 0:
self['HostName'] = data[self['HostNameOffset']:][:self['HostNameLength']*2]
if self['UserNameLength'] > 0:
self['UserName'] = data[self['UserNameOffset']:][:self['UserNameLength']*2]
if self['PasswordLength'] > 0:
self['Password'] = data[self['PasswordOffset']:][:self['PasswordLength']*2]
if self['AppNameLength'] > 0:
self['AppName'] = data[self['AppNameOffset']:][:self['AppNameLength']*2]
if self['ServerNameLength'] > 0:
self['ServerName'] = data[self['ServerNameOffset']:][:self['ServerNameLength']*2]
if self['CltIntNameLength'] > 0:
self['CltIntName'] = data[self['CltIntNameOffset']:][:self['CltIntNameLength']*2]
if self['DatabaseLength'] > 0:
self['Database'] = data[self['DatabaseOffset']:][:self['DatabaseLength']*2]
if self['SSPILength'] > 0:
self['SSPI'] = data[self['SSPIOffset']:][:self['SSPILength']*2]
if self['AtchDBFileLength'] > 0:
self['AtchDBFile'] = data[self['AtchDBFileOffset']:][:self['AtchDBFileLength']*2]
def getData(self):
index = 36+50
self['HostNameOffset']= index
index += len(self['HostName'])
if self['UserName'] != '':
self['UserNameOffset'] = index
else:
self['UserNameOffset'] = 0
index += len(self['UserName'])
if self['Password'] != '':
self['PasswordOffset'] = index
else:
self['PasswordOffset'] = 0
index += len(self['Password'])
self['AppNameOffset']= index
self['ServerNameOffset']=self['AppNameOffset'] + len(self['AppName'])
self['CltIntNameOffset']=self['ServerNameOffset'] + len(self['ServerName'])
self['LanguageOffset']=self['CltIntNameOffset'] + len(self['CltIntName'])
self['DatabaseOffset']=self['LanguageOffset']
self['SSPIOffset']=self['DatabaseOffset'] + len(self['Database'])
self['AtchDBFileOffset']=self['SSPIOffset'] + len(self['SSPI'])
return Structure.getData(self)
class TDS_LOGIN_ACK(Structure):
structure = (
('TokenType','<B'),
('Length','<H'),
('Interface','<B'),
('TDSVersion','<L'),
('ProgNameLen','<B'),
('_ProgNameLen','_-ProgName','self["ProgNameLen"]*2'),
('ProgName',':'),
('MajorVer','<B'),
('MinorVer','<B'),
('BuildNumHi','<B'),
('BuildNumLow','<B'),
)
class TDS_RETURNSTATUS(Structure):
structure = (
('TokenType','<B'),
('Value','<L'),
)
class TDS_INFO_ERROR(Structure):
structure = (
('TokenType','<B'),
('Length','<H'),
('Number','<L'),
('State','<B'),
('Class','<B'),
('MsgTextLen','<H'),
('_MsgTextLen','_-MsgText','self["MsgTextLen"]*2'),
('MsgText',':'),
('ServerNameLen','<B'),
('_ServerNameLen','_-ServerName','self["ServerNameLen"]*2'),
('ServerName',':'),
('ProcNameLen','<B'),
('_ProcNameLen','_-ProcName','self["ProcNameLen"]*2'),
('ProcName',':'),
('LineNumber','<H'),
)
class TDS_ENVCHANGE(Structure):
structure = (
('TokenType','<B'),
('Length','<H=4+len(Data)'),
('Type','<B'),
('_Data','_-Data','self["Length"]-1'),
('Data',':'),
)
class TDS_DONEINPROC(Structure):
structure = (
('TokenType','<B'),
('Status','<H'),
('CurCmd','<H'),
('DoneRowCount','<L'),
)
class TDS_ORDER(Structure):
structure = (
('TokenType','<B'),
('Length','<H'),
('_Data','_-Data','self["Length"]'),
('Data',':'),
)
class TDS_ENVCHANGE_VARCHAR(Structure):
structure = (
('NewValueLen','<B=len(NewValue)'),
('_NewValue','_-NewValue','self["NewValueLen"]*2'),
('NewValue',':'),
('OldValueLen','<B=len(OldValue)'),
('_OldValue','_-OldValue','self["OldValueLen"]*2'),
('OldValue',':'),
)
class TDS_ROW(Structure):
structure = (
('TokenType','<B'),
('Data',':'),
)
class TDS_DONE(Structure):
structure = (
('TokenType','<B'),
('Status','<H'),
('CurCmd','<H'),
('DoneRowCount','<L'),
)
class TDS_COLMETADATA(Structure):
structure = (
('TokenType','<B'),
('Count','<H'),
('Data',':'),
)
class MSSQL:
def __init__(self, address, port=1433, rowsPrinter=DummyPrint()):
#self.packetSize = 32764
self.packetSize = 32763
self.server = address
self.port = port
self.socket = 0
self.replies = {}
self.colMeta = []
self.rows = []
self.currentDB = ''
self.COL_SEPARATOR = ' '
self.MAX_COL_LEN = 255
self.lastError = False
self.tlsSocket = None
self.__rowsPrinter = rowsPrinter
def getInstances(self, timeout = 5):
packet = SQLR()
packet['OpCode'] = SQLR_CLNT_UCAST_EX
# Open the connection
af, socktype, proto, canonname, sa = socket.getaddrinfo(self.server, SQLR_PORT, 0, socket.SOCK_DGRAM)[0]
s = socket.socket(af, socktype, proto)
s.sendto(packet.getData(), 0, ( self.server, SQLR_PORT ))
ready, _, _ = select.select([ s.fileno() ], [ ] , [ ], timeout)
if not ready:
return []
else:
data, _ = s.recvfrom(65536, 0)
s.close()
resp = SQLR_Response(data)
# Now parse the results
entries = resp['Data'].split(b';;')
# We don't want the last one, it's empty
entries.pop()
# the answer to send back
resp = []
for i, entry in enumerate(entries):
fields = entry.split(b';')
ret = {}
for j, field in enumerate(fields):
if (j & 0x1) == 0:
ret[field.decode('utf-8')] = fields[j+1].decode('utf-8')
resp.append(ret)
return resp
def preLogin(self):
prelogin = TDS_PRELOGIN()
prelogin['Version'] = b"\x08\x00\x01\x55\x00\x00"
#prelogin['Encryption'] = TDS_ENCRYPT_NOT_SUP
prelogin['Encryption'] = TDS_ENCRYPT_OFF
prelogin['ThreadID'] = struct.pack('<L',random.randint(0,65535))
prelogin['Instance'] = b'MSSQLServer\x00'
self.sendTDS(TDS_PRE_LOGIN, prelogin.getData(), 0)
tds = self.recvTDS()
return TDS_PRELOGIN(tds['Data'])
def encryptPassword(self, password ):
return bytes(bytearray([((x & 0x0f) << 4) + ((x & 0xf0) >> 4) ^ 0xa5 for x in bytearray(password)]))
def connect(self):
af, socktype, proto, canonname, sa = socket.getaddrinfo(self.server, self.port, 0, socket.SOCK_STREAM)[0]
sock = socket.socket(af, socktype, proto)
try:
sock.connect(sa)
except Exception:
#import traceback
#traceback.print_exc()
raise
self.socket = sock
return sock
def disconnect(self):
if self.socket:
return self.socket.close()
def setPacketSize(self, packetSize):
self.packetSize = packetSize
def getPacketSize(self):
return self.packetSize
def socketSendall(self,data):
if self.tlsSocket is None:
return self.socket.sendall(data)
else:
self.tlsSocket.sendall(data)
dd = self.tlsSocket.bio_read(self.packetSize)
return self.socket.sendall(dd)
def sendTDS(self, packetType, data, packetID = 1):
if (len(data)-8) > self.packetSize:
remaining = data[self.packetSize-8:]
tds = TDSPacket()
tds['Type'] = packetType
tds['Status'] = TDS_STATUS_NORMAL
tds['PacketID'] = packetID
tds['Data'] = data[:self.packetSize-8]
self.socketSendall(tds.getData())
while len(remaining) > (self.packetSize-8):
packetID += 1
tds['PacketID'] = packetID
tds['Data'] = remaining[:self.packetSize-8]
self.socketSendall(tds.getData())
remaining = remaining[self.packetSize-8:]
data = remaining
packetID+=1
tds = TDSPacket()
tds['Type'] = packetType
tds['Status'] = TDS_STATUS_EOM
tds['PacketID'] = packetID
tds['Data'] = data
self.socketSendall(tds.getData())
def socketRecv(self, packetSize):
data = self.socket.recv(packetSize)
if self.tlsSocket is not None:
dd = ''
self.tlsSocket.bio_write(data)
while True:
try:
dd += self.tlsSocket.read(packetSize)
except SSL.WantReadError:
data2 = self.socket.recv(packetSize - len(data) )
self.tlsSocket.bio_write(data2)
pass
else:
data = dd
break
return data
def recvTDS(self, packetSize = None):
# Do reassembly here
if packetSize is None:
packetSize = self.packetSize
packet = TDSPacket(self.socketRecv(packetSize))
status = packet['Status']
packetLen = packet['Length']-8
while packetLen > len(packet['Data']):
data = self.socketRecv(packetSize)
packet['Data'] += data
remaining = None
if packetLen < len(packet['Data']):
remaining = packet['Data'][packetLen:]
packet['Data'] = packet['Data'][:packetLen]
#print "REMAINING ",
#if remaining is None:
# print None
#else:
# print len(remaining)
while status != TDS_STATUS_EOM:
if remaining is not None:
tmpPacket = TDSPacket(remaining)
else:
tmpPacket = TDSPacket(self.socketRecv(packetSize))
packetLen = tmpPacket['Length'] - 8
while packetLen > len(tmpPacket['Data']):
data = self.socketRecv(packetSize)
tmpPacket['Data'] += data
remaining = None
if packetLen < len(tmpPacket['Data']):
remaining = tmpPacket['Data'][packetLen:]
tmpPacket['Data'] = tmpPacket['Data'][:packetLen]
status = tmpPacket['Status']
packet['Data'] += tmpPacket['Data']
packet['Length'] += tmpPacket['Length'] - 8
#print packet['Length']
return packet
def kerberosLogin(self, database, username, password='', domain='', hashes=None, aesKey='', kdcHost=None, TGT=None, TGS=None, useCache=True):
if hashes is not None:
lmhash, nthash = hashes.split(':')
lmhash = binascii.a2b_hex(lmhash)
nthash = binascii.a2b_hex(nthash)
else:
lmhash = ''
nthash = ''
resp = self.preLogin()
# Test this!
if resp['Encryption'] == TDS_ENCRYPT_REQ or resp['Encryption'] == TDS_ENCRYPT_OFF:
LOG.info("Encryption required, switching to TLS")
# Switching to TLS now
ctx = SSL.Context(SSL.TLSv1_METHOD)
ctx.set_cipher_list('RC4, AES256')
tls = SSL.Connection(ctx,None)
tls.set_connect_state()
while True:
try:
tls.do_handshake()
except SSL.WantReadError:
data = tls.bio_read(4096)
self.sendTDS(TDS_PRE_LOGIN, data,0)
tds = self.recvTDS()
tls.bio_write(tds['Data'])
else:
break
# SSL and TLS limitation: Secure Socket Layer (SSL) and its replacement,
# Transport Layer Security(TLS), limit data fragments to 16k in size.
self.packetSize = 16*1024-1
self.tlsSocket = tls
login = TDS_LOGIN()
login['HostName'] = (''.join([random.choice(string.ascii_letters) for _ in range(8)])).encode('utf-16le')
login['AppName'] = (''.join([random.choice(string.ascii_letters) for _ in range(8)])).encode('utf-16le')
login['ServerName'] = self.server.encode('utf-16le')
login['CltIntName'] = login['AppName']
login['ClientPID'] = random.randint(0,1024)
login['PacketSize'] = self.packetSize
if database is not None:
login['Database'] = database.encode('utf-16le')
login['OptionFlags2'] = TDS_INIT_LANG_FATAL | TDS_ODBC_ON
from impacket.spnego import SPNEGO_NegTokenInit, TypesMech
# Importing down here so pyasn1 is not required if kerberos is not used.
from impacket.krb5.ccache import CCache
from impacket.krb5.asn1 import AP_REQ, Authenticator, TGS_REP, seq_set
from impacket.krb5.kerberosv5 import getKerberosTGT, getKerberosTGS, KerberosError
from impacket.krb5 import constants
from impacket.krb5.types import Principal, KerberosTime, Ticket
from pyasn1.codec.der import decoder, encoder
from pyasn1.type.univ import noValue
import datetime
if useCache:
domain, username, TGT, TGS = CCache.parseFile(domain, username, 'MSSQLSvc/%s:%d' % (self.server, self.port))
if TGS is None:
# search for the port's instance name instead (instance name based SPN)
LOG.debug('Searching target\'s instances to look for port number %s' % self.port)
instances = self.getInstances()
instanceName = None
for i in instances:
try:
if int(i['tcp']) == self.port:
instanceName = i['InstanceName']
except Exception as e:
pass
if instanceName:
domain, username, TGT, TGS = CCache.parseFile(domain, username, 'MSSQLSvc/%s.%s:%s' % (self.server.split('.')[0], domain, instanceName))
# First of all, we need to get a TGT for the user
userName = Principal(username, type=constants.PrincipalNameType.NT_PRINCIPAL.value)
while True:
if TGT is None:
if TGS is None:
try:
tgt, cipher, oldSessionKey, sessionKey = getKerberosTGT(userName, password, domain, lmhash, nthash, aesKey, kdcHost)
except KerberosError as e:
if e.getErrorCode() == constants.ErrorCodes.KDC_ERR_ETYPE_NOSUPP.value:
# We might face this if the target does not support AES
# So, if that's the case we'll force using RC4 by converting
# the password to lm/nt hashes and hope for the best. If that's already
# done, byebye.
if lmhash == '' and nthash == '' and (aesKey == '' or aesKey is None) and TGT is None and TGS is None:
from impacket.ntlm import compute_lmhash, compute_nthash
LOG.debug('Got KDC_ERR_ETYPE_NOSUPP, fallback to RC4')
lmhash = compute_lmhash(password)
nthash = compute_nthash(password)
continue
else:
raise
else:
raise
else:
tgt = TGT['KDC_REP']
cipher = TGT['cipher']
sessionKey = TGT['sessionKey']
if TGS is None:
# From https://msdn.microsoft.com/en-us/library/ms191153.aspx?f=255&MSPPError=-2147217396
# Beginning with SQL Server 2008, the SPN format is changed in order to support Kerberos authentication
# on TCP/IP, named pipes, and shared memory. The supported SPN formats for named and default instances
# are as follows.
# Named instance
# MSSQLSvc/FQDN:[port | instancename], where:
# MSSQLSvc is the service that is being registered.
# FQDN is the fully qualified domain name of the server.
# port is the TCP port number.
# instancename is the name of the SQL Server instance.
serverName = Principal('MSSQLSvc/%s.%s:%d' % (self.server.split('.')[0], domain, self.port), type=constants.PrincipalNameType.NT_SRV_INST.value)
try:
tgs, cipher, oldSessionKey, sessionKey = getKerberosTGS(serverName, domain, kdcHost, tgt, cipher, sessionKey)
except KerberosError as e:
if e.getErrorCode() == constants.ErrorCodes.KDC_ERR_ETYPE_NOSUPP.value:
# We might face this if the target does not support AES
# So, if that's the case we'll force using RC4 by converting
# the password to lm/nt hashes and hope for the best. If that's already
# done, byebye.
if lmhash == '' and nthash == '' and (aesKey == '' or aesKey is None) and TGT is None and TGS is None:
from impacket.ntlm import compute_lmhash, compute_nthash
LOG.debug('Got KDC_ERR_ETYPE_NOSUPP, fallback to RC4')
lmhash = compute_lmhash(password)
nthash = compute_nthash(password)
else:
raise
else:
raise
else:
break
else:
tgs = TGS['KDC_REP']
cipher = TGS['cipher']
sessionKey = TGS['sessionKey']
break
# Let's build a NegTokenInit with a Kerberos REQ_AP
blob = SPNEGO_NegTokenInit()
# Kerberos
blob['MechTypes'] = [TypesMech['MS KRB5 - Microsoft Kerberos 5']]
# Let's extract the ticket from the TGS
tgs = decoder.decode(tgs, asn1Spec = TGS_REP())[0]
ticket = Ticket()
ticket.from_asn1(tgs['ticket'])
# Now let's build the AP_REQ
apReq = AP_REQ()
apReq['pvno'] = 5
apReq['msg-type'] = int(constants.ApplicationTagNumbers.AP_REQ.value)
opts = list()
apReq['ap-options'] = constants.encodeFlags(opts)
seq_set(apReq,'ticket', ticket.to_asn1)
authenticator = Authenticator()
authenticator['authenticator-vno'] = 5
authenticator['crealm'] = domain
seq_set(authenticator, 'cname', userName.components_to_asn1)
now = datetime.datetime.utcnow()
authenticator['cusec'] = now.microsecond
authenticator['ctime'] = KerberosTime.to_asn1(now)
encodedAuthenticator = encoder.encode(authenticator)
# Key Usage 11
# AP-REQ Authenticator (includes application authenticator
# subkey), encrypted with the application session key
# (Section 5.5.1)
encryptedEncodedAuthenticator = cipher.encrypt(sessionKey, 11, encodedAuthenticator, None)
apReq['authenticator'] = noValue
apReq['authenticator']['etype'] = cipher.enctype
apReq['authenticator']['cipher'] = encryptedEncodedAuthenticator
blob['MechToken'] = encoder.encode(apReq)
login['OptionFlags2'] |= TDS_INTEGRATED_SECURITY_ON
login['SSPI'] = blob.getData()
login['Length'] = len(login.getData())
# Send the NTLMSSP Negotiate or SQL Auth Packet
self.sendTDS(TDS_LOGIN7, login.getData())
# According to the specs, if encryption is not required, we must encrypt just
# the first Login packet :-o
if resp['Encryption'] == TDS_ENCRYPT_OFF:
self.tlsSocket = None
tds = self.recvTDS()
self.replies = self.parseReply(tds['Data'])
if TDS_LOGINACK_TOKEN in self.replies:
return True
else:
return False
def login(self, database, username, password='', domain='', hashes = None, useWindowsAuth = False):
if hashes is not None:
lmhash, nthash = hashes.split(':')
lmhash = binascii.a2b_hex(lmhash)
nthash = binascii.a2b_hex(nthash)
else:
lmhash = ''
nthash = ''
resp = self.preLogin()
# Test this!
if resp['Encryption'] == TDS_ENCRYPT_REQ or resp['Encryption'] == TDS_ENCRYPT_OFF:
LOG.info("Encryption required, switching to TLS")
# Switching to TLS now
ctx = SSL.Context(SSL.TLSv1_METHOD)
ctx.set_cipher_list('RC4, AES256')
tls = SSL.Connection(ctx,None)
tls.set_connect_state()
while True:
try:
tls.do_handshake()
except SSL.WantReadError:
data = tls.bio_read(4096)
self.sendTDS(TDS_PRE_LOGIN, data,0)
tds = self.recvTDS()
tls.bio_write(tds['Data'])
else:
break
# SSL and TLS limitation: Secure Socket Layer (SSL) and its replacement,
# Transport Layer Security(TLS), limit data fragments to 16k in size.
self.packetSize = 16*1024-1
self.tlsSocket = tls
login = TDS_LOGIN()
login['HostName'] = (''.join([random.choice(string.ascii_letters) for i in range(8)])).encode('utf-16le')
login['AppName'] = (''.join([random.choice(string.ascii_letters) for i in range(8)])).encode('utf-16le')
login['ServerName'] = self.server.encode('utf-16le')
login['CltIntName'] = login['AppName']
login['ClientPID'] = random.randint(0,1024)
login['PacketSize'] = self.packetSize
if database is not None:
login['Database'] = database.encode('utf-16le')
login['OptionFlags2'] = TDS_INIT_LANG_FATAL | TDS_ODBC_ON
if useWindowsAuth is True:
login['OptionFlags2'] |= TDS_INTEGRATED_SECURITY_ON
# NTLMSSP Negotiate
auth = ntlm.getNTLMSSPType1('','')
login['SSPI'] = auth.getData()
else:
login['UserName'] = username.encode('utf-16le')
login['Password'] = self.encryptPassword(password.encode('utf-16le'))
login['SSPI'] = ''
login['Length'] = len(login.getData())
# Send the NTLMSSP Negotiate or SQL Auth Packet
self.sendTDS(TDS_LOGIN7, login.getData())
# According to the specs, if encryption is not required, we must encrypt just
# the first Login packet :-o
if resp['Encryption'] == TDS_ENCRYPT_OFF:
self.tlsSocket = None
tds = self.recvTDS()
if useWindowsAuth is True:
serverChallenge = tds['Data'][3:]
# Generate the NTLM ChallengeResponse AUTH
type3, exportedSessionKey = ntlm.getNTLMSSPType3(auth, serverChallenge, username, password, domain, lmhash, nthash)
self.sendTDS(TDS_SSPI, type3.getData())
tds = self.recvTDS()
self.replies = self.parseReply(tds['Data'])
if TDS_LOGINACK_TOKEN in self.replies:
return True
else:
return False
def processColMeta(self):
for col in self.colMeta:
if col['Type'] in [TDS_NVARCHARTYPE, TDS_NCHARTYPE, TDS_NTEXTTYPE]:
col['Length'] = col['TypeData']//2
fmt = '%%-%ds'
elif col['Type'] in [TDS_GUIDTYPE]:
col['Length'] = 36
fmt = '%%%ds'
elif col['Type'] in [TDS_DECIMALNTYPE,TDS_NUMERICNTYPE]:
col['Length'] = ord(col['TypeData'][0:1])
fmt = '%%%ds'
elif col['Type'] in [TDS_DATETIMNTYPE]:
col['Length'] = 19
fmt = '%%-%ds'
elif col['Type'] in [TDS_INT4TYPE, TDS_INTNTYPE]:
col['Length'] = 11
fmt = '%%%ds'
elif col['Type'] in [TDS_FLTNTYPE, TDS_MONEYNTYPE]:
col['Length'] = 25
fmt = '%%%ds'
elif col['Type'] in [TDS_BITNTYPE, TDS_BIGCHARTYPE]:
col['Length'] = col['TypeData']
fmt = '%%%ds'
elif col['Type'] in [TDS_BIGBINARYTYPE, TDS_BIGVARBINTYPE]:
col['Length'] = col['TypeData'] * 2
fmt = '%%%ds'
elif col['Type'] in [TDS_TEXTTYPE, TDS_BIGVARCHRTYPE]:
col['Length'] = col['TypeData']
fmt = '%%-%ds'
else:
col['Length'] = 10
fmt = '%%%ds'
if len(col['Name']) > col['Length']:
col['Length'] = len(col['Name'])
elif col['Length'] > self.MAX_COL_LEN:
col['Length'] = self.MAX_COL_LEN
col['Format'] = fmt % col['Length']
def printColumnsHeader(self):
if len(self.colMeta) == 0:
return
for col in self.colMeta:
self.__rowsPrinter.logMessage(col['Format'] % col['Name'] + self.COL_SEPARATOR)
self.__rowsPrinter.logMessage('\n')
for col in self.colMeta:
self.__rowsPrinter.logMessage('-'*col['Length'] + self.COL_SEPARATOR)
self.__rowsPrinter.logMessage('\n')