mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-27 20:11:02 +00:00
Minor patch
This commit is contained in:
parent
aaa3a0b9a1
commit
d27b560dbd
9 changed files with 16 additions and 16 deletions
|
|
@ -188,7 +188,7 @@ c03dc585f89642cfd81b087ac2723e3e1bb3bfa8c60e6f5fe58ef3b0113ebfe6 lib/core/data.
|
|||
48797d6c34dd9bb8a53f7f3794c85f4288d82a9a1d6be7fcf317d388cb20d4b3 lib/core/replication.py
|
||||
0b8c38a01bb01f843d94a6c5f2075ee47520d0c4aa799cecea9c3e2c5a4a23a6 lib/core/revision.py
|
||||
888daba83fd4a34e9503fe21f01fef4cc730e5cde871b1d40e15d4cbc847d56c lib/core/session.py
|
||||
357fd67ff460107fca97761ba98d8bbbb2e53c2e200797eee9c1572992a20b52 lib/core/settings.py
|
||||
9a47b68074883713823a9128ebdda561a28d70b0043661d8f0a0796167c00f09 lib/core/settings.py
|
||||
cd5a66deee8963ba8e7e9af3dd36eb5e8127d4d68698811c29e789655f507f82 lib/core/shell.py
|
||||
bcb5d8090d5e3e0ef2a586ba09ba80eef0c6d51feb0f611ed25299fbb254f725 lib/core/subprocessng.py
|
||||
70ea3768f1b3062b22d20644df41c86238157ec80dd43da40545c620714273c6 lib/core/target.py
|
||||
|
|
@ -592,13 +592,13 @@ d77a7a10fe3245ac6a9cfe221edc47389e91db3c47ab5fe6f214d18f3559f797 thirdparty/cha
|
|||
99665a5a6bd9921c1f044013f4ed58ea74537cace14fb1478504d302e8dba940 thirdparty/chardet/__init__.py
|
||||
be9989bf606ed09f209cc5513c730579f4d1be8fe16b59abc8b8a0f0207080e8 thirdparty/chardet/jisfreq.py
|
||||
3d894da915104fc2ccddc4f91661c63f48a2b1c1654d6103f763002ef06e9e0a thirdparty/chardet/jpcntx.py
|
||||
afab6f3ad3bc16a8676d6041e55e1ccdc9757d6338a41f651a259053ef20becc thirdparty/chardet/langbulgarianmodel.py
|
||||
d5c32edb05203c1f1b43645b5634782cdc020844e043e0f0a34120dbfb81d75b thirdparty/chardet/langgreekmodel.py
|
||||
bab3262471c85ed0b069602acb5cc463fe129b0c0dcedef7d1b0ceb635f3463b thirdparty/chardet/langhebrewmodel.py
|
||||
383022b2fa827deb3c07815ec8cfcf83d1d8dd90e7132682893e01c72ce873ac thirdparty/chardet/langhungarianmodel.py
|
||||
b0faa4ac16d7d10570c32ea8a9197ec7b111bf6278fb368ca02bcba644ac4892 thirdparty/chardet/langrussianmodel.py
|
||||
a69a0a3862fd38f763f40e025321bc478f336e75edf4c37559778261ea5aeac7 thirdparty/chardet/langthaimodel.py
|
||||
1f795d89c23fae196fd2bdd5169556b542fa5f7d16cb9f7abfbfd81f3dac11d8 thirdparty/chardet/langturkishmodel.py
|
||||
c7e37136025cd83662727b28eda1096cb90edcdeff9fbe69c68ce7abd637c999 thirdparty/chardet/langbulgarianmodel.py
|
||||
0d14ea9c4f0b1c56b3973ca252ebfbe425984f47dc23777fef9c89f74b000f60 thirdparty/chardet/langgreekmodel.py
|
||||
02118d149e3ad330914d9df550c100adccdda23e7fa69929ab141db2041b393f thirdparty/chardet/langhebrewmodel.py
|
||||
2a11db92bc99f895d1c2cc4073847349b585185660e8430975b996b8e5d569df thirdparty/chardet/langhungarianmodel.py
|
||||
b5beaf306af79329a46c7b95d288a49cb686360b7035d5c0cd3f325cefa08487 thirdparty/chardet/langrussianmodel.py
|
||||
6cb2774a086b331727a5412582ed8d80d7db896244cbd3e36946fb7812cfd9f5 thirdparty/chardet/langthaimodel.py
|
||||
8f891116c7272a084950e955a6a530eb352f8f50aa97a5b84a37e2fd730caa3a thirdparty/chardet/langturkishmodel.py
|
||||
4b6228391845937f451053a54855ad815c9b4623fa87b0652e574755c94d914f thirdparty/chardet/latin1prober.py
|
||||
011f797851fdbeea927ef2d064df8be628de6b6e4d3810a85eac3cb393bdc4b4 thirdparty/chardet/mbcharsetprober.py
|
||||
87a4d19e762ad8ec46d56743e493b2c5c755a67edd1b4abebc1f275abe666e1e thirdparty/chardet/mbcsgroupprober.py
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ from lib.core.enums import OS
|
|||
from thirdparty import six
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.10.6.58"
|
||||
VERSION = "1.10.6.59"
|
||||
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
|
||||
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
|
||||
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
|
||||
|
|
|
|||
2
thirdparty/chardet/langbulgarianmodel.py
vendored
2
thirdparty/chardet/langbulgarianmodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
2
thirdparty/chardet/langgreekmodel.py
vendored
2
thirdparty/chardet/langgreekmodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
2
thirdparty/chardet/langhebrewmodel.py
vendored
2
thirdparty/chardet/langhebrewmodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
2
thirdparty/chardet/langhungarianmodel.py
vendored
2
thirdparty/chardet/langhungarianmodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
2
thirdparty/chardet/langrussianmodel.py
vendored
2
thirdparty/chardet/langrussianmodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
2
thirdparty/chardet/langthaimodel.py
vendored
2
thirdparty/chardet/langthaimodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
2
thirdparty/chardet/langturkishmodel.py
vendored
2
thirdparty/chardet/langturkishmodel.py
vendored
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from chardet.sbcharsetprober import SingleByteCharSetModel
|
||||
from .sbcharsetprober import SingleByteCharSetModel
|
||||
|
||||
|
||||
# 3: Positive
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue