mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
sqlite3 library is not part of Gentoo (perhaps others) Python packages or installation bundle
This commit is contained in:
parent
a0df36beda
commit
360aff7a4d
|
@ -212,6 +212,9 @@ Nico Leidecker <nico@leidecker.info>
|
|||
Gabriel Lima <pato@bugnet.com.br>
|
||||
for reporting a couple of bugs
|
||||
|
||||
Mark Lowe <larkmowe@gmail.com>
|
||||
for reporting a bug
|
||||
|
||||
Truong Duc Luong <luongductruong@gmail.com>
|
||||
for reporting a minor bug
|
||||
|
||||
|
|
|
@ -7,7 +7,10 @@ Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
|||
See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import sqlite3
|
||||
try:
|
||||
import sqlite3
|
||||
except ImportError, _:
|
||||
pass
|
||||
|
||||
class Replication:
|
||||
"""
|
||||
|
|
|
@ -7,7 +7,10 @@ Copyright (c) 2006-2010 sqlmap developers (http://sqlmap.sourceforge.net/)
|
|||
See the file 'doc/COPYING' for copying permission
|
||||
"""
|
||||
|
||||
import sqlite3
|
||||
try:
|
||||
import sqlite3
|
||||
except ImportError, _:
|
||||
pass
|
||||
|
||||
from lib.core.convert import utf8encode
|
||||
from lib.core.data import conf
|
||||
|
|
Loading…
Reference in New Issue
Block a user