コード例 #1
0
ファイル: find_vhosts.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._first_exec = True
        self._already_queried = ScalableBloomFilter()
        self._can_resolve_domain_names = False
コード例 #2
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._first_exec = True
        self._already_queried = ScalableBloomFilter()
        self._can_resolve_domain_names = False
コード例 #3
0
    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'
        ]
コード例 #4
0
ファイル: dot_net_errors.py プロジェクト: Adastra-thw/w3af
    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
コード例 #5
0
ファイル: xssed_dot_com.py プロジェクト: weisst/w3af
    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>"
コード例 #6
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._accounts = []

        # User configured
        self._result_limit = 300
コード例 #7
0
ファイル: dot_net_errors.py プロジェクト: weisst/w3af
    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
コード例 #8
0
ファイル: finger_bing.py プロジェクト: R41nB0W/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._accounts = []

        # User configured
        self._result_limit = 300
コード例 #9
0
ファイル: afd.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        #
        #   Internal variables
        #
        self._not_filtered = []
        self._filtered = []
コード例 #10
0
ファイル: afd.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        #
        #   Internal variables
        #
        self._not_filtered = []
        self._filtered = []
コード例 #11
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._version = None

        # User configured parameters
        self._db_file = os.path.join('plugins', 'infrastructure', 'favicon',
                                     'favicon-md5')
コード例 #12
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._version = None

        # User configured parameters
        self._db_file = os.path.join('plugins', 'infrastructure', 'favicon',
                                     'favicon-md5')
コード例 #13
0
ファイル: allowed_methods.py プロジェクト: weisst/w3af
    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
コード例 #14
0
ファイル: allowed_methods.py プロジェクト: Adastra-thw/w3af
    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
コード例 #15
0
ファイル: domain_dot.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._already_tested = set()
コード例 #16
0
 def __init__(self):
     InfrastructurePlugin.__init__(self)
コード例 #17
0
ファイル: server_status.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._shared_hosting_hosts = []
コード例 #18
0
ファイル: server_header.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._server_header = True
        self._x_powered = True
コード例 #19
0
ファイル: frontpage_version.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._analyzed_dirs = ScalableBloomFilter()
コード例 #20
0
ファイル: finger_pks.py プロジェクト: Adastra-thw/w3af
 def __init__(self):
     InfrastructurePlugin.__init__(self)
コード例 #21
0
ファイル: shared_hosting.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # User variables
        self._result_limit = 300
コード例 #22
0
ファイル: shared_hosting.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # User variables
        self._result_limit = 300
コード例 #23
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Already analyzed extensions
        self._already_analyzed_ext = ScalableBloomFilter()
コード例 #24
0
ファイル: domain_dot.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._already_tested = set()
コード例 #25
0
ファイル: hmap.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # User configured parameters
        self._gen_fp = False
コード例 #26
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._http_port = 80
        self._https_port = 443
コード例 #27
0
ファイル: hmap.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # User configured parameters
        self._gen_fp = False
コード例 #28
0
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._shared_hosting_hosts = []
コード例 #29
0
ファイル: php_eggs.py プロジェクト: jrogosky/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Already analyzed extensions
        self._already_analyzed_ext = ScalableBloomFilter()
コード例 #30
0
    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']
コード例 #31
0
ファイル: fingerprint_os.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._exec = True
コード例 #32
0
ファイル: http_vs_https_dist.py プロジェクト: weisst/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._http_port = 80
        self._https_port = 443
コード例 #33
0
ファイル: fingerprint_os.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        self._exec = True
コード例 #34
0
ファイル: server_header.py プロジェクト: Adastra-thw/w3af
    def __init__(self):
        InfrastructurePlugin.__init__(self)

        # Internal variables
        self._server_header = True
        self._x_powered = True