mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Minor update regarding #2791
This commit is contained in:
parent
1436333960
commit
bf8b2eb21e
|
@ -19,7 +19,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
|
|||
from lib.core.enums import OS
|
||||
|
||||
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
|
||||
VERSION = "1.1.11.26"
|
||||
VERSION = "1.1.11.27"
|
||||
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)
|
||||
|
|
|
@ -26,7 +26,7 @@ def tamper(payload, **kwargs):
|
|||
|
||||
Notes:
|
||||
* Useful to bypass very weak and bespoke web application firewalls
|
||||
that filter the IFNULL() and IF() functions
|
||||
that filter the IFNULL() functions
|
||||
|
||||
>>> tamper('IFNULL(1, 2)')
|
||||
'CASE WHEN ISNULL(1) THEN (2) ELSE (1) END'
|
||||
|
|
|
@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
|
|||
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
|
||||
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
|
||||
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
|
||||
dbb3911457f48be58003b6447658f970 lib/core/settings.py
|
||||
a3bd57377387f302ee0d99a34ce9db1d lib/core/settings.py
|
||||
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
|
||||
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
|
||||
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py
|
||||
|
@ -244,6 +244,7 @@ e9d64dc52b02ae141bca2b2c69540ccc tamper/concat2concatws.py
|
|||
573e3304d0dd5977e5a8a93d24fa3f99 tamper/greatest.py
|
||||
fe4ce7c1d5219fce225048ef8b00a272 tamper/halfversionedmorekeywords.py
|
||||
458fae54979d388da14c3ca23d532830 tamper/htmlencode.py
|
||||
3d78732865cd12e5f490470babd289f6 tamper/ifnull2casewhenisnull.py
|
||||
ccc5edfba7532a27809a80a7606b226f tamper/ifnull2ifisnull.py
|
||||
6a7e92664dff80fe48b1a6f99fcc71b7 tamper/informationschemacomment.py
|
||||
5fb9aaf874daa47ea2b672a22740e56b tamper/__init__.py
|
||||
|
|
Loading…
Reference in New Issue
Block a user