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


Python infrastructure_plugin.InfrastructurePlugin类代码示例

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


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


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