methodwebscan 0.0.285__tar.gz → 0.0.286__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/PKG-INFO +1 -1
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/pyproject.toml +1 -1
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/__init__.py +0 -10
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/__init__.py +1 -15
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/discover_directory_config.py +1 -2
- methodwebscan-0.0.286/src/methodwebscan/resources/discover/resources/page/__init__.py +9 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/page/discover_page_config.py +0 -4
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/page/discover_page_result.py +0 -4
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/witness/discover_witness_config.py +0 -4
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/witness/discover_witness_target_result.py +0 -4
- methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/__init__.py +0 -23
- methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/sensitive_content.py +0 -19
- methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/sensitive_content_confidence_level.py +0 -5
- methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/sensitive_content_fingerprint.py +0 -22
- methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/sensitive_content_fingerprints.py +0 -18
- methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/sensitive_content_type.py +0 -5
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/README.md +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/core/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/core/datetime_utils.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/core/enum.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/core/pydantic_utilities.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/core/serialization.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/py.typed +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/config/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/config/send_http_request_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/binary_body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/form_body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/http_method.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/http_request.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/http_request_params.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/http_request_response.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/http_response.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/json_body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/multipart_body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/multipart_part.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/response_cookie.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/text_body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/http/web_protocol.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/method/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/method/browserbase_request_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/method/browserbase_request_secrets.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/method/headless_request_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/method/request_method.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/method/user_agent_preset.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/config/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_dast_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/config/nuclei_run_mode.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/parameter/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/parameter/request_parameter.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/parameter/request_parameter_location.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/probe/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/probe/nuclei_expected_matcher.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/probe/nuclei_matcher_condition_enum.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/probe/nuclei_matcher_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/probe/nuclei_probe.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/classification_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/cve_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/cwe_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/nuclei_attempt_info.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/nuclei_finding_info.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/resources/nuclei/resources/report/nuclei_target_info.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/application_detection_state.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/application_fingerprint_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/application_fingerprint_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/application_resource_config_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/application_resource_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/application_resource_type_all.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/discover_application_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/discover_application_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/application/discover_application_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/directory_target_info.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/discover_directory_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/discover_directory_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/wordlist_size.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/directory/wordlist_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/page/discover_page_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/probe/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/probe/discover_probe_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/probe/discover_probe_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/probe/discover_probe_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/request/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/request/discover_request_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/request/discover_request_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/request/discover_request_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/request/request_file.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/request/tls_certificate.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/discover_route_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/discover_route_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/discover_route_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/route_body_param.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/route_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/route/route_query_param.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/discover_saas_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/discover_saas_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/discover_saas_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_active_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_active_company.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_active_finding.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_active_request.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_fingerprint_entry.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_fingerprint_file.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/saas/saas_fingerprint_profile.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/witness/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/witness/detected_technology.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/witness/discover_witness_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/wordlist/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/wordlist/discover_wordlist_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/wordlist/discover_wordlist_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/wordlist/discover_wordlist_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/resources/wordlist/wordlist_entry.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/api_application_route_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/api_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/o_auth_flow.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/o_auth_flow_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/request_schema.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/schema_property.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/security_requirement.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/security_scheme.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/common/security_scheme_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/enumerate_graphql_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/enumerate_graphql_data.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/enumerate_graphql_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/enumerate_graphql_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_data.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_directive.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_enum_value.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_field.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_input_value.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_query.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_schema.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_schema_data.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/graphql/graph_ql_type_ref.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/swagger/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/swagger/enumerate_swagger_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/swagger/enumerate_swagger_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/apiapplication/resources/swagger/enumerate_swagger_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/detection_source.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/drupal_module_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/drupal_modules_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/enumerate_drupal_modules_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/enumerate_drupal_modules_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/enumerate_drupal_modules_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/drupal/resources/modules/modules_file_size.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/detection_source.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/enumerate_wordpress_plugins_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/enumerate_wordpress_plugins_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/enumerate_wordpress_plugins_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/plugins_file_size.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/wordpress_api_response.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/wordpress_plugin_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/cms/resources/wordpress/resources/plugins/wordpress_plugins_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/container_image.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/container_repository.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/docker_catalog_response.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/docker_manifest_descriptor.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/docker_manifest_v_2.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/docker_tags_response.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/enumerate_docker_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/enumerate_docker_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/enumerate_docker_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/containerregistry/resources/docker/enumerate_docker_results.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/ratelimit/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/ratelimit/enumerate_rate_limit_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/ratelimit/enumerate_rate_limit_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/ratelimit/enumerate_rate_limit_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/ratelimit/rate_limit_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/general/resources/ratelimit/rate_limit_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/kube/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/kube/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/kube/resources/kube/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/kube/resources/kube/enumerate_kube_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/kube/resources/kube/enumerate_kube_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/resources/kube/resources/kube/enumerate_kube_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/dast/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_category.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/dast/pentest_application_dast_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/cve/pentest_application_cve_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/misconfiguration_category.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/misconfiguration/pentest_application_misconfiguration_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/pentest_application_technology_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/application/resources/scan/resources/technology/technology_type.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_outcome.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_step.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_target_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/plugindeploy/pentest_cms_wordpress_plugin_deploy_upload_method.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/pentest_cms_wordpress_wp_login_bruteforce_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/pentest_cms_wordpress_wp_login_bruteforce_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/wp_login_bruteforce_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/wp_login_bruteforce_attempt_outcome.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/wp_login_bruteforce_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/wploginbruteforce/wp_login_bruteforce_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcbruteforce/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcbruteforce/pentest_cms_wordpress_xmlrpc_bruteforce_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcbruteforce/pentest_cms_wordpress_xmlrpc_bruteforce_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcbruteforce/xmlrpc_bruteforce_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcbruteforce/xmlrpc_bruteforce_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcbruteforce/xmlrpc_bruteforce_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcfunctionsexposed/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcfunctionsexposed/pentest_cms_wordpress_xmlrpc_functions_exposed_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcfunctionsexposed/pentest_cms_wordpress_xmlrpc_functions_exposed_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcfunctionsexposed/xmlrpc_functions_exposed_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcfunctionsexposed/xmlrpc_functions_exposed_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/cms/resources/wordpress/resources/xmlrpcfunctionsexposed/xmlrpc_functions_exposed_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/pentest_route_static_asset_takeover_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_fingerprint.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_static_request.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_test.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/route/resources/staticassettakeover/static_asset_takeover_vulnerable_details.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/__init__.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/pentest_waf_detect_config.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/pentest_waf_detect_report.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_body.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detect_attempt.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detect_result.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detect_target.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_detected.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_fingerprint.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_provider_enum.py +0 -0
- {methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/pentest/resources/waf/resources/detect/waf_rule_category_enum.py +0 -0
{methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/discover/__init__.py
RENAMED
|
@@ -49,11 +49,6 @@ from .resources import (
|
|
|
49
49
|
SaasFingerprintEntry,
|
|
50
50
|
SaasFingerprintFile,
|
|
51
51
|
SaasFingerprintProfile,
|
|
52
|
-
SensitiveContent,
|
|
53
|
-
SensitiveContentConfidenceLevel,
|
|
54
|
-
SensitiveContentFingerprint,
|
|
55
|
-
SensitiveContentFingerprints,
|
|
56
|
-
SensitiveContentType,
|
|
57
52
|
TlsCertificate,
|
|
58
53
|
WordlistEntry,
|
|
59
54
|
WordlistSize,
|
|
@@ -116,11 +111,6 @@ __all__ = [
|
|
|
116
111
|
"SaasFingerprintEntry",
|
|
117
112
|
"SaasFingerprintFile",
|
|
118
113
|
"SaasFingerprintProfile",
|
|
119
|
-
"SensitiveContent",
|
|
120
|
-
"SensitiveContentConfidenceLevel",
|
|
121
|
-
"SensitiveContentFingerprint",
|
|
122
|
-
"SensitiveContentFingerprints",
|
|
123
|
-
"SensitiveContentType",
|
|
124
114
|
"TlsCertificate",
|
|
125
115
|
"WordlistEntry",
|
|
126
116
|
"WordlistSize",
|
|
@@ -22,16 +22,7 @@ from .directory import (
|
|
|
22
22
|
WordlistSize,
|
|
23
23
|
WordlistType,
|
|
24
24
|
)
|
|
25
|
-
from .page import
|
|
26
|
-
DiscoverPageConfig,
|
|
27
|
-
DiscoverPageReport,
|
|
28
|
-
DiscoverPageResult,
|
|
29
|
-
SensitiveContent,
|
|
30
|
-
SensitiveContentConfidenceLevel,
|
|
31
|
-
SensitiveContentFingerprint,
|
|
32
|
-
SensitiveContentFingerprints,
|
|
33
|
-
SensitiveContentType,
|
|
34
|
-
)
|
|
25
|
+
from .page import DiscoverPageConfig, DiscoverPageReport, DiscoverPageResult
|
|
35
26
|
from .probe import DiscoverProbeConfig, DiscoverProbeReport, DiscoverProbeResult
|
|
36
27
|
from .request import DiscoverRequestConfig, DiscoverRequestReport, DiscoverRequestResult, RequestFile, TlsCertificate
|
|
37
28
|
from .route import (
|
|
@@ -104,11 +95,6 @@ __all__ = [
|
|
|
104
95
|
"SaasFingerprintEntry",
|
|
105
96
|
"SaasFingerprintFile",
|
|
106
97
|
"SaasFingerprintProfile",
|
|
107
|
-
"SensitiveContent",
|
|
108
|
-
"SensitiveContentConfidenceLevel",
|
|
109
|
-
"SensitiveContentFingerprint",
|
|
110
|
-
"SensitiveContentFingerprints",
|
|
111
|
-
"SensitiveContentType",
|
|
112
98
|
"TlsCertificate",
|
|
113
99
|
"WordlistEntry",
|
|
114
100
|
"WordlistSize",
|
|
@@ -17,8 +17,7 @@ class DiscoverDirectoryConfig(UniversalBaseModel):
|
|
|
17
17
|
wordlist_size: typing.Optional[WordlistSize] = pydantic.Field(alias="wordlistSize", default=None)
|
|
18
18
|
http_methods: typing.List[HttpMethod] = pydantic.Field(alias="httpMethods")
|
|
19
19
|
response_codes: str = pydantic.Field(alias="responseCodes")
|
|
20
|
-
|
|
21
|
-
omit_standard_responses: bool = pydantic.Field(alias="omitStandardResponses")
|
|
20
|
+
enable_common_response_filters: bool = pydantic.Field(alias="enableCommonResponseFilters")
|
|
22
21
|
verify_tls: bool = pydantic.Field(alias="verifyTls")
|
|
23
22
|
threshold: float
|
|
24
23
|
timeout: int
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
|
|
5
|
+
from .discover_page_config import DiscoverPageConfig
|
|
6
|
+
from .discover_page_report import DiscoverPageReport
|
|
7
|
+
from .discover_page_result import DiscoverPageResult
|
|
8
|
+
|
|
9
|
+
__all__ = ["DiscoverPageConfig", "DiscoverPageReport", "DiscoverPageResult"]
|
|
@@ -12,10 +12,6 @@ from ....common.resources.method.user_agent_preset import UserAgentPreset
|
|
|
12
12
|
|
|
13
13
|
class DiscoverPageConfig(UniversalBaseModel):
|
|
14
14
|
target: str
|
|
15
|
-
sensitive_content_detection: bool = pydantic.Field(alias="sensitiveContentDetection")
|
|
16
|
-
sensitive_content_fingerprints_path: typing.Optional[str] = pydantic.Field(
|
|
17
|
-
alias="sensitiveContentFingerprintsPath", default=None
|
|
18
|
-
)
|
|
19
15
|
response_codes: str = pydantic.Field(alias="responseCodes")
|
|
20
16
|
screenshot: bool
|
|
21
17
|
max_redirects: int = pydantic.Field(alias="maxRedirects")
|
|
@@ -5,7 +5,6 @@ import typing
|
|
|
5
5
|
import pydantic
|
|
6
6
|
from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
7
|
from ....common.resources.http.http_request_response import HttpRequestResponse
|
|
8
|
-
from .sensitive_content import SensitiveContent
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
class DiscoverPageResult(UniversalBaseModel):
|
|
@@ -15,9 +14,6 @@ class DiscoverPageResult(UniversalBaseModel):
|
|
|
15
14
|
favicon: typing.Optional[str] = None
|
|
16
15
|
favicon_hash: typing.Optional[str] = pydantic.Field(alias="faviconHash", default=None)
|
|
17
16
|
html_title: typing.Optional[str] = pydantic.Field(alias="htmlTitle", default=None)
|
|
18
|
-
sensitive_contents: typing.Optional[typing.List[SensitiveContent]] = pydantic.Field(
|
|
19
|
-
alias="sensitiveContents", default=None
|
|
20
|
-
)
|
|
21
17
|
|
|
22
18
|
if IS_PYDANTIC_V2:
|
|
23
19
|
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="forbid") # type: ignore # Pydantic v2
|
|
@@ -13,10 +13,6 @@ from ....common.resources.method.user_agent_preset import UserAgentPreset
|
|
|
13
13
|
class DiscoverWitnessConfig(UniversalBaseModel):
|
|
14
14
|
target: typing.Optional[str] = None
|
|
15
15
|
targets_file: typing.Optional[str] = pydantic.Field(alias="targetsFile", default=None)
|
|
16
|
-
sensitive_content_detection: bool = pydantic.Field(alias="sensitiveContentDetection")
|
|
17
|
-
sensitive_content_fingerprints_path: typing.Optional[str] = pydantic.Field(
|
|
18
|
-
alias="sensitiveContentFingerprintsPath", default=None
|
|
19
|
-
)
|
|
20
16
|
response_codes: str = pydantic.Field(alias="responseCodes")
|
|
21
17
|
screenshot: bool
|
|
22
18
|
max_redirects: int = pydantic.Field(alias="maxRedirects")
|
|
@@ -6,7 +6,6 @@ import pydantic
|
|
|
6
6
|
from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
7
|
from ....common.resources.http.http_request_response import HttpRequestResponse
|
|
8
8
|
from ..application.application_fingerprint_attempt import ApplicationFingerprintAttempt
|
|
9
|
-
from ..page.sensitive_content import SensitiveContent
|
|
10
9
|
from ..request.tls_certificate import TlsCertificate
|
|
11
10
|
from .detected_technology import DetectedTechnology
|
|
12
11
|
|
|
@@ -26,9 +25,6 @@ class DiscoverWitnessTargetResult(UniversalBaseModel):
|
|
|
26
25
|
tls_certificates: typing.Optional[typing.List[TlsCertificate]] = pydantic.Field(
|
|
27
26
|
alias="tlsCertificates", default=None
|
|
28
27
|
)
|
|
29
|
-
sensitive_contents: typing.Optional[typing.List[SensitiveContent]] = pydantic.Field(
|
|
30
|
-
alias="sensitiveContents", default=None
|
|
31
|
-
)
|
|
32
28
|
errors: typing.Optional[typing.List[str]] = None
|
|
33
29
|
|
|
34
30
|
if IS_PYDANTIC_V2:
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
# isort: skip_file
|
|
4
|
-
|
|
5
|
-
from .discover_page_config import DiscoverPageConfig
|
|
6
|
-
from .discover_page_report import DiscoverPageReport
|
|
7
|
-
from .discover_page_result import DiscoverPageResult
|
|
8
|
-
from .sensitive_content import SensitiveContent
|
|
9
|
-
from .sensitive_content_confidence_level import SensitiveContentConfidenceLevel
|
|
10
|
-
from .sensitive_content_fingerprint import SensitiveContentFingerprint
|
|
11
|
-
from .sensitive_content_fingerprints import SensitiveContentFingerprints
|
|
12
|
-
from .sensitive_content_type import SensitiveContentType
|
|
13
|
-
|
|
14
|
-
__all__ = [
|
|
15
|
-
"DiscoverPageConfig",
|
|
16
|
-
"DiscoverPageReport",
|
|
17
|
-
"DiscoverPageResult",
|
|
18
|
-
"SensitiveContent",
|
|
19
|
-
"SensitiveContentConfidenceLevel",
|
|
20
|
-
"SensitiveContentFingerprint",
|
|
21
|
-
"SensitiveContentFingerprints",
|
|
22
|
-
"SensitiveContentType",
|
|
23
|
-
]
|
methodwebscan-0.0.285/src/methodwebscan/resources/discover/resources/page/sensitive_content.py
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
|
|
5
|
-
import pydantic
|
|
6
|
-
from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
-
from .sensitive_content_fingerprint import SensitiveContentFingerprint
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class SensitiveContent(UniversalBaseModel):
|
|
11
|
-
value: str
|
|
12
|
-
fingerprint: SensitiveContentFingerprint
|
|
13
|
-
|
|
14
|
-
if IS_PYDANTIC_V2:
|
|
15
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="forbid") # type: ignore # Pydantic v2
|
|
16
|
-
else:
|
|
17
|
-
|
|
18
|
-
class Config:
|
|
19
|
-
extra = pydantic.Extra.forbid
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
|
|
5
|
-
import pydantic
|
|
6
|
-
from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
-
from .sensitive_content_confidence_level import SensitiveContentConfidenceLevel
|
|
8
|
-
from .sensitive_content_type import SensitiveContentType
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class SensitiveContentFingerprint(UniversalBaseModel):
|
|
12
|
-
name: str
|
|
13
|
-
type: SensitiveContentType
|
|
14
|
-
pattern: str
|
|
15
|
-
confidence: SensitiveContentConfidenceLevel
|
|
16
|
-
|
|
17
|
-
if IS_PYDANTIC_V2:
|
|
18
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="forbid") # type: ignore # Pydantic v2
|
|
19
|
-
else:
|
|
20
|
-
|
|
21
|
-
class Config:
|
|
22
|
-
extra = pydantic.Extra.forbid
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
-
|
|
3
|
-
import typing
|
|
4
|
-
|
|
5
|
-
import pydantic
|
|
6
|
-
from .....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
-
from .sensitive_content_fingerprint import SensitiveContentFingerprint
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class SensitiveContentFingerprints(UniversalBaseModel):
|
|
11
|
-
fingerprints: typing.List[SensitiveContentFingerprint]
|
|
12
|
-
|
|
13
|
-
if IS_PYDANTIC_V2:
|
|
14
|
-
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="forbid") # type: ignore # Pydantic v2
|
|
15
|
-
else:
|
|
16
|
-
|
|
17
|
-
class Config:
|
|
18
|
-
extra = pydantic.Extra.forbid
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/core/pydantic_utilities.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/common/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{methodwebscan-0.0.285 → methodwebscan-0.0.286}/src/methodwebscan/resources/enumerate/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|