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 a0fb968 commit 0bfc1b4Copy full SHA for 0bfc1b4
1 file changed
lib/techniques/inband/union/test.py
@@ -53,13 +53,7 @@ def __unionPosition(negative=False, falseCond=False):
53
# Perform the request
54
resultPage, _ = Request.queryPage(payload, content=True)
55
56
- # We have to assure that the randQuery value is not within the
57
- # HTML code of the result page because, for instance, it is there
58
- # when the query is wrong and the back-end DBMS is Microsoft SQL
59
- # server
60
- htmlParsed = htmlParser(resultPage)
61
-
62
- if resultPage and randQuery in resultPage and not htmlParsed:
+ if resultPage and randQuery in resultPage:
63
setUnion(position=exprPosition)
64
validPayload = payload
65
0 commit comments