multiple fixes for direct mssql connection

This commit is contained in:
TrustedSec 2016-07-30 15:24:07 -04:00
parent 98b85deae4
commit 19e28fe7e0
4 changed files with 8 additions and 1622 deletions

View file

@ -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

View file

@ -3,7 +3,7 @@ pycrypto
requests
pyopenssl
pefile
impacket
# Generate QR Codes
qrcode
pillow
pillow

File diff suppressed because it is too large Load diff

View file

@ -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