コード例 #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
ファイル: wml_parser.py プロジェクト: Adastra-thw/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.'
コード例 #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.'