Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c742254 commit 831f79bCopy full SHA for 831f79b
1 file changed
lib/techniques/union/test.py
@@ -52,7 +52,7 @@ def __orderByTest(cols):
52
query = agent.suffixQuery(query, suffix=suffix, comment=comment)
53
payload = agent.payload(newValue=query, place=place, parameter=parameter, where=where)
54
page, headers = Request.queryPage(payload, place=place, content=True, raise404=False)
55
- return not re.search(r"((warning|error)[^\n]*order)|(order by)", page or "", re.I) and comparison(page, headers)
+ return not re.search(r"(warning|error|order by)", page or "", re.I) and comparison(page, headers)
56
57
if __orderByTest(1) and not __orderByTest(randomInt()):
58
infoMsg = "ORDER BY technique seems to be usable. "
0 commit comments