예제 #1
0
파일: html.py 프로젝트: weisst/w3af
 def _pre_parse(self, http_resp):
     '''
     :param http_resp: The HTTP response document that contains the
     HTML document inside its body.
     '''
     SGMLParser._pre_parse(self, http_resp)
     assert self._base_url, 'The base URL must be set.'
예제 #2
0
파일: html.py 프로젝트: Adastra-thw/w3af
 def _pre_parse(self, http_resp):
     '''
     :param http_resp: The HTTP response document that contains the
     HTML document inside its body.
     '''
     SGMLParser._pre_parse(self, http_resp)
     assert self._base_url, 'The base URL must be set.'
예제 #3
0
 def _pre_parse(self, HTTPResponse):
     '''
     :param HTTPResponse: The HTTP response document that contains the WML
     document inside its body.
     '''
     
     SGMLParser._pre_parse(self, HTTPResponse)
     assert self._base_url is not None, 'The base URL must be set.'
예제 #4
0
파일: wml_parser.py 프로젝트: weisst/w3af
    def _pre_parse(self, HTTPResponse):
        '''
        :param HTTPResponse: The HTTP response document that contains the WML
        document inside its body.
        '''

        SGMLParser._pre_parse(self, HTTPResponse)
        assert self._base_url is not None, 'The base URL must be set.'