Removing some unused stuff (mainly imports)

This commit is contained in:
Miroslav Stampar
2013-01-18 11:50:02 +01:00
parent a7cab63796
commit 33ea811c6c
5 changed files with 0 additions and 23 deletions

View File

@@ -5,16 +5,9 @@ Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
See the file 'doc/COPYING' for copying permission
"""
try:
import hashlib
except:
import md5
import sha
import json
import pickle
import sys
import struct
from lib.core.settings import IS_WIN
from lib.core.settings import UNICODE_ENCODING

View File

@@ -44,9 +44,6 @@ class SqlmapSilentQuitException(SqlmapBaseException):
class SqlmapUserQuitException(SqlmapBaseException):
pass
class SqlmapRegExprException(SqlmapBaseException):
pass
class SqlmapSyntaxException(SqlmapBaseException):
pass

View File

@@ -111,7 +111,6 @@ from lib.core.settings import NULL
from lib.core.settings import ORACLE_ALIASES
from lib.core.settings import PARAMETER_SPLITTING_REGEX
from lib.core.settings import PGSQL_ALIASES
from lib.core.settings import PYVERSION
from lib.core.settings import SITE
from lib.core.settings import SQLITE_ALIASES
from lib.core.settings import SUPPORTED_DBMS

View File

@@ -11,7 +11,6 @@ import subprocess
import sys
import time
from lib.core.common import dataToStdout
from lib.core.settings import IS_WIN
if IS_WIN: