MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / parseResponse

Function parseResponse

lib/request/basic.py:144–156  ·  view source on GitHub ↗

@param page: the page to parse to feed the knowledge base htmlFp (back-end DBMS fingerprint based upon DBMS error messages return through the web application) list and absFilePaths (absolute file paths) set.

(page, headers, status=None)

Source from the content-addressed store, hash-verified

142 return headers
143
144def parseResponse(page, headers, status=None):
145 """
146 @param page: the page to parse to feed the knowledge base htmlFp
147 (back-end DBMS fingerprint based upon DBMS error messages return
148 through the web application) list and absFilePaths (absolute file
149 paths) set.
150 """
151
152 if headers:
153 headersParser(headers)
154
155 if page:
156 htmlParser(page if not status else "%s\n\n%s" % (status, page))
157
158@cachedmethod
159def checkCharEncoding(encoding, warn=True):

Callers 2

http_error_302Method · 0.90
processResponseFunction · 0.85

Calls 2

headersParserFunction · 0.90
htmlParserFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…