当前位置: 首页>>代码示例>>Python>>正文


Python SGMLParser.parse方法代码示例

本文整理汇总了Python中w3af.core.data.parsers.doc.sgml.SGMLParser.parse方法的典型用法代码示例。如果您正苦于以下问题:Python SGMLParser.parse方法的具体用法?Python SGMLParser.parse怎么用?Python SGMLParser.parse使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在w3af.core.data.parsers.doc.sgml.SGMLParser的用法示例。


在下文中一共展示了SGMLParser.parse方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_mailto_ignored_in_links

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_mailto_ignored_in_links(self):
        body = u'<a href="mailto:[email protected]">a</a>'
        resp = build_http_response(self.url, body)
        p = SGMLParser(resp)
        p.parse()

        parsed, _ = p.references
        self.assertEqual(parsed, [])
开发者ID:andresriancho,项目名称:w3af,代码行数:10,代码来源:test_sgml.py

示例2: test_extract_emails_mailto

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_extract_emails_mailto(self):
        body = u'<a href="mailto:[email protected]">test</a>'
        resp = build_http_response(self.url, body)
        p = SGMLParser(resp)
        p.parse()

        expected_res = {u'[email protected]'}
        self.assertEqual(p.get_emails(), expected_res)
开发者ID:andresriancho,项目名称:w3af,代码行数:10,代码来源:test_sgml.py

示例3: test_mailto_subject_body

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_mailto_subject_body(self):
        body = u'<a href="mailto:[email protected]?subject=testing out mailto'\
               u'&body=Just testing">test</a>'
        resp = build_http_response(self.url, body)
        p = SGMLParser(resp)
        p.parse()

        expected_res = {u'[email protected]'}
        self.assertEqual(p.get_emails(), expected_res)
开发者ID:andresriancho,项目名称:w3af,代码行数:11,代码来源:test_sgml.py

示例4: test_get_clear_text_body

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_get_clear_text_body(self):
        html = 'header <b>ABC</b>-<b>DEF</b>-<b>XYZ</b> footer'
        clear_text = 'header ABC-DEF-XYZ footer'
        headers = Headers([('Content-Type', 'text/html')])
        r = build_http_response(self.url, html, headers)

        p = SGMLParser(r)
        p.parse()

        self.assertEquals(clear_text, p.get_clear_text_body())
开发者ID:andresriancho,项目名称:w3af,代码行数:12,代码来源:test_sgml.py

示例5: test_meta_tags

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
 def test_meta_tags(self):
     body = HTML_DOC % \
         {'head': META_REFRESH + META_REFRESH_WITH_URL,
          'body': ''}
     resp = build_http_response(self.url, body)
     p = SGMLParser(resp)
     p.parse()
     self.assertTrue(2, len(p.meta_redirs))
     self.assertTrue("2;url=http://crawler.w3af.com/" in p.meta_redirs)
     self.assertTrue("600" in p.meta_redirs)
     self.assertEquals([URL('http://crawler.w3af.com/')], p.references[0])
开发者ID:everping,项目名称:w3af,代码行数:13,代码来源:test_sgml.py

示例6: test_meta_tags_with_single_quotes

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_meta_tags_with_single_quotes(self):
        body = HTML_DOC % {'head': META_REFRESH + META_REFRESH_WITH_URL_AND_QUOTES,
                           'body': ''}
        resp = build_http_response(self.url, body)

        p = SGMLParser(resp)
        p.parse()

        self.assertEqual(2, len(p.meta_redirs))
        self.assertIn("2;url='http://crawler.w3af.com/'", p.meta_redirs)
        self.assertIn("600", p.meta_redirs)
        self.assertEqual([URL('http://crawler.w3af.com/')], p.references[0])
开发者ID:andresriancho,项目名称:w3af,代码行数:14,代码来源:test_sgml.py

示例7: test_reference_with_colon

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
 def test_reference_with_colon(self):
     body = """
     <html>
         <a href="d:url.html?id=13&subid=3">foo</a>
     </html>"""
     r = build_http_response(self.url, body)
     p = SGMLParser(r)
     p.parse()
     parsed_refs = p.references[0]
     #
     #    Finding zero URLs is the correct behavior based on what
     #    I've seen in Opera and Chrome.
     #
     self.assertEquals(0, len(parsed_refs))
开发者ID:andresriancho,项目名称:w3af,代码行数:16,代码来源:test_sgml.py

示例8: test_parsed_references

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
 def test_parsed_references(self):
     # The *parsed* urls *must* come both from valid tags and tag attributes
     # Also invalid urls like must be ignored (like javascript instructions)
     body = """
     <html>
         <a href="/x.py?a=1" Invalid_Attr="/invalid_url.php">
         <form action="javascript:history.back(1)">
             <tagX href="/py.py"/>
         </form>
     </html>"""
     r = build_http_response(self.url, body)
     p = SGMLParser(r)
     p.parse()
     parsed_refs = p.references[0]
     self.assertEquals(1, len(parsed_refs))
     self.assertEquals(
         'http://w3af.com/x.py?a=1', parsed_refs[0].url_string)
开发者ID:andresriancho,项目名称:w3af,代码行数:19,代码来源:test_sgml.py

示例9: test_get_clear_text_body_encodings

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_get_clear_text_body_encodings(self):

        raise SkipTest('Not sure why this one is failing :S')

        for lang_desc, (body, encoding) in TEST_RESPONSES.iteritems():
            encoding_header = 'text/html; charset=%s' % encoding
            headers = Headers([('Content-Type', encoding_header)])

            encoded_body = body.encode(encoding)
            r = build_http_response(self.url, encoded_body, headers)

            p = SGMLParser(r)
            p.parse()

            ct_body = p.get_clear_text_body()

            # These test strings don't really have tags, so they should be eq
            self.assertEqual(ct_body, body)
开发者ID:andresriancho,项目名称:w3af,代码行数:20,代码来源:test_sgml.py

示例10: test_get_clear_text_issue_4402

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_get_clear_text_issue_4402(self):
        """
        :see: https://github.com/andresriancho/w3af/issues/4402
        """
        test_file_path = 'core/data/url/tests/data/encoding_4402.php'
        test_file = os.path.join(ROOT_PATH, test_file_path)
        body = file(test_file, 'rb').read()

        sample_encodings = [encoding for _, (_, encoding) in TEST_RESPONSES.iteritems()]
        sample_encodings.extend(['', 'utf-8'])

        for encoding in sample_encodings:
            encoding_header = 'text/html; charset=%s' % encoding
            headers = Headers([('Content-Type', encoding_header)])

            r = build_http_response(self.url, body, headers)

            p = SGMLParser(r)
            p.parse()

            p.get_clear_text_body()
开发者ID:andresriancho,项目名称:w3af,代码行数:23,代码来源:test_sgml.py

示例11: test_case_sensitivity

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
    def test_case_sensitivity(self):
        """
        Ensure handler methods are *always* called with lowered-cased
        tag and attribute names
        """
        def islower(s):
            il = False
            if isinstance(s, basestring):
                il = s.islower()
            else:
                il = all(k.islower() for k in s)
            assert il, "'%s' is not lowered-case" % s
            return il

        def start_wrapper(orig_start, tag):
            islower(tag.tag)
            islower(tag.attrib)
            return orig_start(tag)

        tags = (A_LINK_ABSOLUTE, INPUT_CHECKBOX_WITH_NAME, SELECT_WITH_NAME,
                TEXTAREA_WITH_ID_AND_DATA, INPUT_HIDDEN)
        ops = "lower", "upper", "title"

        for indexes in combinations(range(len(tags)), 2):

            body_elems = []

            for index, tag in enumerate(tags):
                ele = tag
                if index in indexes:
                    ele = getattr(tag, choice(ops))()
                body_elems.append(ele)

            body = HTML_DOC % {'head': '', 'body': ''.join(body_elems)}
            resp = build_http_response(self.url, body)
            p = SGMLParser(resp)
            orig_start = p.start
            wrapped_start = partial(start_wrapper, orig_start)
            p.start = wrapped_start
            p.parse()
开发者ID:andresriancho,项目名称:w3af,代码行数:42,代码来源:test_sgml.py

示例12: test_baseurl

# 需要导入模块: from w3af.core.data.parsers.doc.sgml import SGMLParser [as 别名]
# 或者: from w3af.core.data.parsers.doc.sgml.SGMLParser import parse [as 别名]
 def test_baseurl(self):
     body = HTML_DOC % {'head': BASE_TAG, 'body': ''}
     resp = build_http_response(self.url, body)
     p = SGMLParser(resp)
     p.parse()
     self.assertEquals(URL('http://www.w3afbase.com/'), p._base_url)
开发者ID:andresriancho,项目名称:w3af,代码行数:8,代码来源:test_sgml.py


注:本文中的w3af.core.data.parsers.doc.sgml.SGMLParser.parse方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。