| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,7 +20,7 @@ | |||
| 20 | 20 | from thirdparty import six | |
| 21 | 21 | ||
| 22 | 22 | # sqlmap version (<major>.<minor>.<month>.<monthly commit>) | |
| 23 | - VERSION = "1.10.8.52" | ||
| 23 | + VERSION = "1.10.8.53" | ||
| 24 | 24 | TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable" | |
| 25 | 25 | TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34} | |
| 26 | 26 | VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -269,7 +269,7 @@ def oracle_old_passwd(password, username, uppercase=True): # prior to version ' | |||
| 269 | 269 | ||
| 270 | 270 | IV, pad = b"\0" * 8, b"\0" | |
| 271 | 271 | ||
| 272 | - unistr = b"".join((b"\0" + _.encode(UNICODE_ENCODING)) if ord(_) < 256 else _.encode(UNICODE_ENCODING) for _ in (username + password).upper()) | ||
| 272 | + unistr = b"".join((b"\0" + _.encode(UNICODE_ENCODING)) if ord(_) < 256 else _.encode(UNICODE_ENCODING) for _ in (getUnicode(username) + getUnicode(password)).upper()) | ||
| 273 | 273 | ||
| 274 | 274 | if des.__module__ == "Crypto.Cipher.DES": | |
| 275 | 275 | unistr += b"\0" * ((8 - len(unistr) % 8) & 7) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments