• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python infrastructure_plugin.InfrastructurePlugin类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中w3af.core.controllers.plugins.infrastructure_plugin.InfrastructurePlugin的典型用法代码示例。如果您正苦于以下问题:Python InfrastructurePlugin类的具体用法?Python InfrastructurePlugin怎么用?Python InfrastructurePlugin使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



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

示例1: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._first_exec = True
        self._already_queried = ScalableBloomFilter()
        self._can_resolve_domain_names = False
开发者ID:EnDe,项目名称:w3af,代码行数:7,代码来源:find_vhosts.py


示例2: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        #
        #   Could change in time,
        #
        self._xssed_url = URL("http://www.xssed.com")
        self._fixed = "<img src='http://data.xssed.org/images/fixed.gif'>&nbsp;FIXED</th>"
开发者ID:3rdDegree,项目名称:w3af,代码行数:8,代码来源:xssed_dot_com.py


示例3: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._accounts = []

        # User configured
        self._result_limit = 300
开发者ID:0x554simon,项目名称:w3af,代码行数:8,代码来源:finger_bing.py


示例4: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        #
        #   Internal variables
        #
        self._not_filtered = []
        self._filtered = []
开发者ID:RON313,项目名称:w3af,代码行数:8,代码来源:afd.py


示例5: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._already_tested = ScalableBloomFilter()
        # On real web applications, if we can't trigger an error in the first
        # MAX_TESTS tests, it simply won't happen and we have to stop testing.
        self.MAX_TESTS = 25
开发者ID:3rdDegree,项目名称:w3af,代码行数:8,代码来源:dot_net_errors.py


示例6: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._version = None

        # User configured parameters
        self._db_file = os.path.join(ROOT_PATH, 'plugins', 'infrastructure',
                                     'favicon', 'favicon-md5')
开发者ID:0x554simon,项目名称:w3af,代码行数:9,代码来源:favicon_identification.py


示例7: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        #
        #   Depend on xssed.com
        #
        self.XSSED_URL = URL("http://www.xssed.com")
        self.UNFIXED = "UNFIXED"
        self.XSSED_DOMAIN_RE = re.compile("<a href='(/mirror/\d*/)'" " target='_blank'>")
        self.XSSED_URL_RE = re.compile("URL: (.*?)</th>")
开发者ID:ZionOps,项目名称:w3af,代码行数:10,代码来源:xssed_dot_com.py


示例8: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Already analyzed extensions
        self._already_analyzed_ext = ScalableBloomFilter()

        # Internal DB
        self._db_file = os.path.join(ROOT_PATH, 'plugins', 'infrastructure',
                                     'php_eggs', 'eggs.json')

        # Get data from external JSON file and fill EGG_DB array
        data = self.read_jsondata(self._db_file)
        self.EGG_DB = self.fill_egg_array(data)
开发者ID:0x554simon,项目名称:w3af,代码行数:13,代码来源:php_eggs.py


示例9: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._exec = True
        self._already_tested = ScalableBloomFilter()

        # Methods
        self._supported_methods = self.DAV_METHODS | self.COMMON_METHODS | \
                                  self.UNCOMMON_METHODS | self.PROPOSED_METHODS | \
                                  self.EXTRA_METHODS | self.VERSION_CONTROL

        # User configured variables
        self._exec_one_time = True
        self._report_dav_only = True
开发者ID:batmanWjw,项目名称:w3af,代码行数:15,代码来源:allowed_methods.py


示例10: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # User variables
        self._result_limit = 300
开发者ID:ZionOps,项目名称:w3af,代码行数:5,代码来源:shared_hosting.py


示例11: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._http_port = 80
        self._https_port = 443
开发者ID:everping,项目名称:w3af,代码行数:5,代码来源:http_vs_https_dist.py


示例12: __init__

 def __init__(self):
     InfrastructurePlugin.__init__(self)
开发者ID:0x554simon,项目名称:w3af,代码行数:2,代码来源:finger_pks.py


示例13: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._proxy_header_list = ['Via', 'Reverse-Via', 'X-Forwarded-For',
                                   'Proxy-Connection', 'Max-Forwards',
                                   'X-Forwarded-Host', 'X-Forwarded-Server']
开发者ID:0x554simon,项目名称:w3af,代码行数:6,代码来源:detect_reverse_proxy.py


示例14: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._analyzed_dirs = ScalableBloomFilter()
开发者ID:0x554simon,项目名称:w3af,代码行数:5,代码来源:frontpage_version.py


示例15: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._exec = True
开发者ID:0x554simon,项目名称:w3af,代码行数:4,代码来源:fingerprint_os.py


示例16: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Already analyzed extensions
        self._already_analyzed_ext = ScalableBloomFilter()
开发者ID:3rdDegree,项目名称:w3af,代码行数:5,代码来源:php_eggs.py


示例17: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._already_tested = set()
开发者ID:Adastra-thw,项目名称:Tortazo,代码行数:5,代码来源:domain_dot.py


示例18: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # User configured parameters
        self._gen_fp = False
开发者ID:0x554simon,项目名称:w3af,代码行数:5,代码来源:hmap.py


示例19: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._shared_hosting_hosts = []
开发者ID:masterapocalyptic,项目名称:Tortazo-spanishtranslate,代码行数:5,代码来源:server_status.py


示例20: __init__

    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._server_header = True
        self._x_powered = True
开发者ID:0x554simon,项目名称:w3af,代码行数:6,代码来源:server_header.py



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python threadpool.Pool类代码示例发布时间:2022-05-26
下一篇:
Python grep_plugin.GrepPlugin类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap