mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Adding support for Apache Derby
This commit is contained in:
parent
d7a56017bf
commit
4c804a3fd6
26 changed files with 404 additions and 48 deletions
|
|
@ -48,6 +48,8 @@ def checkDependencies():
|
|||
__import__("ibm_db_dbi")
|
||||
elif dbmsName == DBMS.MONETDB:
|
||||
__import__("pymonetdb")
|
||||
elif dbmsName == DBMS.DERBY:
|
||||
__import__("drda")
|
||||
except:
|
||||
warnMsg = "sqlmap requires '%s' third-party library " % data[1]
|
||||
warnMsg += "in order to directly connect to the DBMS "
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@ else:
|
|||
import base64
|
||||
import binascii
|
||||
import gc
|
||||
import hashlib
|
||||
import os
|
||||
import re
|
||||
import tempfile
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue