mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 16:24:25 +03:00
Merge branch 'master' of github.com:sqlmapproject/sqlmap
This commit is contained in:
commit
2cb3b99910
|
@ -577,6 +577,9 @@ Bedirhan Urgun <bedirhanurgun@gmail.com>
|
|||
Kyprianos Vasilopoulos <kyprianos.vasilopoulos@gmail.com>
|
||||
for reporting a couple of minor bugs
|
||||
|
||||
Vlado Velichkovski <ketejadam@hotmail.com>
|
||||
for reporting a couple of bugs
|
||||
|
||||
Johnny Venter <johnny.venter@zoho.com>
|
||||
for reporting a couple of bugs
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ def __findUnionCharCount(comment, place, parameter, value, prefix, suffix, where
|
|||
query = agent.suffixQuery(query, suffix=suffix, comment=comment)
|
||||
payload = agent.payload(newValue=query, place=place, parameter=parameter, where=where)
|
||||
page, headers = Request.queryPage(payload, place=place, content=True, raise404=False)
|
||||
return not re.search(r"(warning|error|order by)", page or "", re.I) and comparison(page, headers)
|
||||
return not re.search(r"(warning|error|order by|failed)", page or "", re.I) and comparison(page, headers)
|
||||
|
||||
if __orderByTest(1) and not __orderByTest(randomInt()):
|
||||
infoMsg = "ORDER BY technique seems to be usable. "
|
||||
|
|
Loading…
Reference in New Issue
Block a user