mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
Fixes #1572
This commit is contained in:
parent
795777b7c5
commit
a219ff9a92
|
@ -77,10 +77,6 @@ class Wordlist(object):
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
self.adjust()
|
self.adjust()
|
||||||
retVal = self.iter.next().rstrip()
|
retVal = self.iter.next().rstrip()
|
||||||
try:
|
|
||||||
retVal = retVal.decode(UNICODE_ENCODING)
|
|
||||||
except UnicodeDecodeError:
|
|
||||||
continue
|
|
||||||
if not self.proc_count or self.counter % self.proc_count == self.proc_id:
|
if not self.proc_count or self.counter % self.proc_count == self.proc_id:
|
||||||
break
|
break
|
||||||
return retVal
|
return retVal
|
||||||
|
|
|
@ -209,6 +209,9 @@ def oracle_old_passwd(password, username, uppercase=True): # prior to version '
|
||||||
if isinstance(username, unicode):
|
if isinstance(username, unicode):
|
||||||
username = unicode.encode(username, UNICODE_ENCODING) # pyDes has issues with unicode strings
|
username = unicode.encode(username, UNICODE_ENCODING) # pyDes has issues with unicode strings
|
||||||
|
|
||||||
|
if isinstance(password, unicode):
|
||||||
|
password = unicode.encode(password, UNICODE_ENCODING)
|
||||||
|
|
||||||
unistr = "".join("\0%s" % c for c in (username + password).upper())
|
unistr = "".join("\0%s" % c for c in (username + password).upper())
|
||||||
|
|
||||||
cipher = des(hexdecode("0123456789ABCDEF"), CBC, IV, pad)
|
cipher = des(hexdecode("0123456789ABCDEF"), CBC, IV, pad)
|
||||||
|
@ -327,7 +330,8 @@ def wordpress_passwd(password, salt, count, prefix, uppercase=False):
|
||||||
|
|
||||||
return output
|
return output
|
||||||
|
|
||||||
password = password.encode(UNICODE_ENCODING)
|
if isinstance(password, unicode):
|
||||||
|
password = password.encode(UNICODE_ENCODING)
|
||||||
|
|
||||||
cipher = md5(salt)
|
cipher = md5(salt)
|
||||||
cipher.update(password)
|
cipher.update(password)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user