Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bf8b2eb

Browse files
committed
Minor update regarding #2791
1 parent 1436333 commit bf8b2eb

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1.11.26"
22+
VERSION = "1.1.11.27"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

tamper/ifnull2casewhenisnull.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def tamper(payload, **kwargs):
2626
2727
Notes:
2828
* Useful to bypass very weak and bespoke web application firewalls
29-
that filter the IFNULL() and IF() functions
29+
that filter the IFNULL() functions
3030
3131
>>> tamper('IFNULL(1, 2)')
3232
'CASE WHEN ISNULL(1) THEN (2) ELSE (1) END'

txt/checksum.md5

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ e1c000db9be27f973569b1a430629037 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
dbb3911457f48be58003b6447658f970 lib/core/settings.py
49+
a3bd57377387f302ee0d99a34ce9db1d lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d5a04d672a18f78deb2839c3745ff83c lib/core/target.py
@@ -244,6 +244,7 @@ e9d64dc52b02ae141bca2b2c69540ccc tamper/concat2concatws.py
244244
573e3304d0dd5977e5a8a93d24fa3f99 tamper/greatest.py
245245
fe4ce7c1d5219fce225048ef8b00a272 tamper/halfversionedmorekeywords.py
246246
458fae54979d388da14c3ca23d532830 tamper/htmlencode.py
247+
3d78732865cd12e5f490470babd289f6 tamper/ifnull2casewhenisnull.py
247248
ccc5edfba7532a27809a80a7606b226f tamper/ifnull2ifisnull.py
248249
6a7e92664dff80fe48b1a6f99fcc71b7 tamper/informationschemacomment.py
249250
5fb9aaf874daa47ea2b672a22740e56b tamper/__init__.py

0 commit comments

Comments
 (0)