mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 02:53:46 +03:00
Fix of false statement (bluecoat.py was not meant to be used only against MySQL - Issue #261)
This commit is contained in:
parent
7e2db762d6
commit
6ea07f7ba9
|
@ -15,7 +15,7 @@ from lib.core.enums import PRIORITY
|
||||||
__priority__ = PRIORITY.NORMAL
|
__priority__ = PRIORITY.NORMAL
|
||||||
|
|
||||||
def dependencies():
|
def dependencies():
|
||||||
singleTimeWarnMessage("tamper script '%s' is only meant to be run against %s" % (os.path.basename(__file__).split(".")[0], DBMS.MYSQL))
|
pass
|
||||||
|
|
||||||
def tamper(payload, headers=None):
|
def tamper(payload, headers=None):
|
||||||
"""
|
"""
|
||||||
|
@ -27,7 +27,7 @@ def tamper(payload, headers=None):
|
||||||
* Output: SELECT%09id FROM users where id LIKE 1
|
* Output: SELECT%09id FROM users where id LIKE 1
|
||||||
|
|
||||||
Requirement:
|
Requirement:
|
||||||
* MySQL, Blue Coat SGOS with WAF activated as documented in
|
* Blue Coat SGOS with WAF activated as documented in
|
||||||
https://kb.bluecoat.com/index?page=content&id=FAQ2147
|
https://kb.bluecoat.com/index?page=content&id=FAQ2147
|
||||||
|
|
||||||
Tested against:
|
Tested against:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user