mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
fix for that SQLite3 vs SQLite2 issue
This commit is contained in:
parent
d0df8cdac9
commit
207bef7f19
3 changed files with 35 additions and 17 deletions
|
|
@ -763,9 +763,9 @@ def parseTargetDirect():
|
|||
elif dbmsName == "Firebird":
|
||||
import kinterbasdb
|
||||
except ImportError, _:
|
||||
errMsg = "sqlmap requires %s third-party library " % data[1]
|
||||
errMsg = "sqlmap requires '%s' third-party library " % data[1]
|
||||
errMsg += "in order to directly connect to the database "
|
||||
errMsg += "%s. Download from %s" % (dbmsName, data[2])
|
||||
errMsg += "'%s'. Download from '%s'" % (dbmsName, data[2])
|
||||
raise sqlmapMissingDependence, errMsg
|
||||
|
||||
def parseTargetUrl():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue