@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)
| 142 | return headers |
| 143 | |
| 144 | def 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 |
| 159 | def checkCharEncoding(encoding, warn=True): |
no test coverage detected
searching dependent graphs…