mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 22:21:30 +00:00
More work for Issue #66
This commit is contained in:
@@ -22,8 +22,8 @@ from lib.core.settings import CRAWL_EXCLUDE_EXTENSIONS
|
||||
from lib.core.threads import getCurrentThreadData
|
||||
from lib.core.threads import runThreads
|
||||
from lib.request.connect import Connect as Request
|
||||
from extra.beautifulsoup.beautifulsoup import BeautifulSoup
|
||||
from extra.oset.pyoset import oset
|
||||
from thirdparty.beautifulsoup.beautifulsoup import BeautifulSoup
|
||||
from thirdparty.oset.pyoset import oset
|
||||
|
||||
class Crawler:
|
||||
"""
|
||||
|
||||
@@ -8,7 +8,7 @@ See the file 'doc/COPYING' for copying permission
|
||||
try:
|
||||
from crypt import crypt
|
||||
except ImportError, _:
|
||||
from extra.fcrypt.fcrypt import crypt
|
||||
from thirdparty.fcrypt.fcrypt import crypt
|
||||
|
||||
_multiprocessing = None
|
||||
try:
|
||||
@@ -30,8 +30,6 @@ from hashlib import md5
|
||||
from hashlib import sha1
|
||||
from Queue import Queue
|
||||
|
||||
from extra.pydes.pyDes import des
|
||||
from extra.pydes.pyDes import CBC
|
||||
from lib.core.common import Backend
|
||||
from lib.core.common import checkFile
|
||||
from lib.core.common import clearConsoleLine
|
||||
@@ -66,6 +64,8 @@ from lib.core.settings import ML
|
||||
from lib.core.settings import UNICODE_ENCODING
|
||||
from lib.core.settings import ROTATING_CHARS
|
||||
from lib.core.wordlist import Wordlist
|
||||
from thirdparty.pydes.pyDes import des
|
||||
from thirdparty.pydes.pyDes import CBC
|
||||
|
||||
def mysql_passwd(password, uppercase=True):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user