mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Some more drei stuff
This commit is contained in:
parent
49586ad6dd
commit
4b020c4257
81 changed files with 125 additions and 167 deletions
|
|
@ -31,6 +31,7 @@ from lib.core.exception import SqlmapUndefinedMethod
|
|||
from lib.core.settings import TAKEOVER_TABLE_PREFIX
|
||||
from lib.core.settings import UNICODE_ENCODING
|
||||
from lib.request import inject
|
||||
from lib.utils.xrange import xrange
|
||||
|
||||
class Filesystem:
|
||||
"""
|
||||
|
|
@ -70,7 +71,7 @@ class Filesystem:
|
|||
sameFile = None
|
||||
|
||||
if isNumPosStrValue(remoteFileSize):
|
||||
remoteFileSize = long(remoteFileSize)
|
||||
remoteFileSize = int(remoteFileSize)
|
||||
localFile = getUnicode(localFile, encoding=sys.getfilesystemencoding() or UNICODE_ENCODING)
|
||||
sameFile = False
|
||||
|
||||
|
|
|
|||
|
|
@ -42,6 +42,7 @@ from lib.request import inject
|
|||
from lib.utils.hash import attackCachedUsersPasswords
|
||||
from lib.utils.hash import storeHashesToFile
|
||||
from lib.utils.pivotdumptable import pivotDumpTable
|
||||
from lib.utils.xrange import xrange
|
||||
|
||||
class Users:
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue