本文整理汇总了Python中core.data.parsers.url.URL.is_valid_domain方法的典型用法代码示例。如果您正苦于以下问题:Python URL.is_valid_domain方法的具体用法?Python URL.is_valid_domain怎么用?Python URL.is_valid_domain使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.data.parsers.url.URL
的用法示例。
在下文中一共展示了URL.is_valid_domain方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: QueryString
# 需要导入模块: from core.data.parsers.url import URL [as 别名]
# 或者: from core.data.parsers.url.URL import is_valid_domain [as 别名]
<postdata fuzzable request | GET | http://www.w3af.com/>
>>> pdr._dc
QueryString({u'id': [u'1']})
>>> pdr.get_data()
'id=1'
'''
try:
(method, uri, postdata) = csv_row
except ValueError, value_error:
msg = 'The file format is incorrect, an error was found while'\
' parsing: "%s". Exception: "%s".'
om.out.error(msg % (csv_row, value_error))
else:
# Create the obj based on the information
uri = URL(uri)
if uri.is_valid_domain():
return create_fuzzable_request_from_parts(uri, method,
postdata)
def _objs_from_burp_log(self, burp_file):
'''
Read a burp log (XML) and extract the information.
'''
class XMLParser(object):
'''
TODO: Support protocol (http|https) and port extraction. Now it only
works with http and 80.
'''
requests = []
parsing_request = False
current_is_base64 = False