mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Adding support for Presto
This commit is contained in:
parent
ec4880e0e1
commit
d5fab1907d
18 changed files with 500 additions and 55 deletions
|
|
@ -52,6 +52,8 @@ def checkDependencies():
|
|||
__import__("drda")
|
||||
elif dbmsName == DBMS.VERTICA:
|
||||
__import__("vertica_python")
|
||||
elif dbmsName == DBMS.PRESTO:
|
||||
__import__("prestodb")
|
||||
except:
|
||||
warnMsg = "sqlmap requires '%s' third-party library " % data[1]
|
||||
warnMsg += "in order to directly connect to the DBMS "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue