本文整理汇总了Python中w3af.core.data.kb.info_set.InfoSet.get_desc方法的典型用法代码示例。如果您正苦于以下问题:Python InfoSet.get_desc方法的具体用法?Python InfoSet.get_desc怎么用?Python InfoSet.get_desc使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类w3af.core.data.kb.info_set.InfoSet
的用法示例。
在下文中一共展示了InfoSet.get_desc方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_to_json
# 需要导入模块: from w3af.core.data.kb.info_set import InfoSet [as 别名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_desc [as 别名]
def test_to_json(self):
i = Info('Blind SQL injection vulnerability', MockInfo.LONG_DESC, 1,
'plugin_name')
i['test'] = 'foo'
i.add_to_highlight('abc', 'def')
iset = InfoSet([i])
jd = iset.to_json()
json_string = json.dumps(jd)
jd = json.loads(json_string)
self.assertEqual(jd['name'], iset.get_name())
self.assertEqual(jd['url'], str(iset.get_url()))
self.assertEqual(jd['var'], iset.get_token_name())
self.assertEqual(jd['response_ids'], iset.get_id())
self.assertEqual(jd['vulndb_id'], iset.get_vulndb_id())
self.assertEqual(jd['desc'], iset.get_desc(with_id=False))
self.assertEqual(jd['long_description'], iset.get_long_description())
self.assertEqual(jd['fix_guidance'], iset.get_fix_guidance())
self.assertEqual(jd['fix_effort'], iset.get_fix_effort())
self.assertEqual(jd['tags'], iset.get_tags())
self.assertEqual(jd['wasc_ids'], iset.get_wasc_ids())
self.assertEqual(jd['wasc_urls'], list(iset.get_wasc_urls()))
self.assertEqual(jd['cwe_urls'], list(iset.get_cwe_urls()))
self.assertEqual(jd['references'], BLIND_SQLI_REFS)
self.assertEqual(jd['owasp_top_10_references'], BLIND_SQLI_TOP10_REFS)
self.assertEqual(jd['plugin_name'], iset.get_plugin_name())
self.assertEqual(jd['severity'], iset.get_severity())
self.assertEqual(jd['attributes'], iset.first_info.copy())
self.assertEqual(jd['highlight'], list(iset.get_to_highlight()))
示例2: test_get_desc_template_info_attr_access
# 需要导入模块: from w3af.core.data.kb.info_set import InfoSet [as 别名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_desc [as 别名]
def test_get_desc_template_info_attr_access(self):
value = 'Yuuup!'
i = MockInfo()
i['tag'] = value
iset = InfoSet([i])
iset.TEMPLATE = '{{ tag }}'
self.assertEqual(iset.get_desc(), value)
示例3: test_get_desc_no_template
# 需要导入模块: from w3af.core.data.kb.info_set import InfoSet [as 别名]
# 或者: from w3af.core.data.kb.info_set.InfoSet import get_desc [as 别名]
def test_get_desc_no_template(self):
i = MockInfo()
iset = InfoSet([i])
self.assertEqual(iset.get_desc(), MockInfo.LONG_DESC)