mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
Implementation for an Issue #468
This commit is contained in:
parent
a72096a345
commit
fca6772df6
|
@ -218,7 +218,7 @@ class Agent(object):
|
||||||
comment = kb.injection.data[kb.technique].comment if comment is None else comment
|
comment = kb.injection.data[kb.technique].comment if comment is None else comment
|
||||||
|
|
||||||
if Backend.getIdentifiedDbms() == DBMS.ACCESS and comment == GENERIC_SQL_COMMENT:
|
if Backend.getIdentifiedDbms() == DBMS.ACCESS and comment == GENERIC_SQL_COMMENT:
|
||||||
comment = "%00"
|
comment = queries[DBMS.ACCESS].comment.query
|
||||||
|
|
||||||
if comment is not None:
|
if comment is not None:
|
||||||
expression += comment
|
expression += comment
|
||||||
|
|
|
@ -355,7 +355,7 @@
|
||||||
<limitstring query=" TOP "/>
|
<limitstring query=" TOP "/>
|
||||||
<order query="ORDER BY %s ASC"/>
|
<order query="ORDER BY %s ASC"/>
|
||||||
<count query="COUNT(%s)"/>
|
<count query="COUNT(%s)"/>
|
||||||
<comment query="%00"/>
|
<comment query="%16" query2="%00"/>
|
||||||
<substring query="MID((%s),%d,%d)"/>
|
<substring query="MID((%s),%d,%d)"/>
|
||||||
<concatenate query="%s&%s"/>
|
<concatenate query="%s&%s"/>
|
||||||
<case query="SELECT (IIF(%s,1,0))"/>
|
<case query="SELECT (IIF(%s,1,0))"/>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user