mirror of
https://github.com/trustedsec/social-engineer-toolkit
synced 2024-11-22 12:33:06 +00:00
multiple fixes for direct mssql connection
This commit is contained in:
parent
98b85deae4
commit
19e28fe7e0
4 changed files with 8 additions and 1622 deletions
|
@ -5,7 +5,10 @@ version 7.3.4
|
|||
* fixed an issue with mssql bruter that would cause it to fail over to nmap scans even if host wasn't valid
|
||||
* fixed an issue that would cause UDP to not work properly when scanning subnet ranges
|
||||
* improved handling and descriptions in mssql
|
||||
* fixed error in mssql bruter
|
||||
* fixed error in mssql bruter error handling exception
|
||||
* fixed an issue that would cause TDS to error out when directly connecting to MSSQL server
|
||||
* removed impacket TDS from src.core and added impacket.tds
|
||||
* updated requirements.txt for impacket
|
||||
|
||||
~~~~~~~~~~~~~~~~
|
||||
version 7.3.3
|
||||
|
|
|
@ -3,7 +3,7 @@ pycrypto
|
|||
requests
|
||||
pyopenssl
|
||||
pefile
|
||||
|
||||
impacket
|
||||
# Generate QR Codes
|
||||
qrcode
|
||||
pillow
|
||||
pillow
|
||||
|
|
1617
src/core/tds.py
1617
src/core/tds.py
File diff suppressed because it is too large
Load diff
|
@ -6,9 +6,9 @@ import os
|
|||
import shutil
|
||||
import subprocess
|
||||
import time
|
||||
|
||||
import src.core.setcore as core
|
||||
import src.core.tds as tds
|
||||
import impacket.tds as tds
|
||||
|
||||
#from src.core.payloadgen import create_payloads
|
||||
|
||||
# Py2/3 compatibility
|
||||
|
|
Loading…
Reference in a new issue