python-gvm 27.1.0__tar.gz → 27.3.0__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.
- {python_gvm-27.1.0 → python_gvm-27.3.0}/PKG-INFO +1 -1
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/__version__.py +1 -1
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/_gmpnext.py +418 -37
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/__init__.py +15 -4
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_agent_groups.py +17 -1
- python_gvm-27.3.0/gvm/protocols/gmp/requests/next/_agent_installer_instructions.py +43 -0
- python_gvm-27.3.0/gvm/protocols/gmp/requests/next/_report_vulnerabilities.py +47 -0
- python_gvm-27.3.0/gvm/protocols/gmp/requests/next/_targets.py +373 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_tasks.py +122 -0
- python_gvm-27.3.0/gvm/protocols/gmp/requests/next/_web_application_targets.py +209 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/pyproject.toml +1 -1
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/connections/test_debug_connection.py +2 -2
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/connections/test_gvm_connection.py +6 -6
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/connections/test_unix_socket_connection.py +16 -3
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/test_create_agent_group.py +22 -3
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/test_modify_agent_group.py +17 -1
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/agent_installer_instructions/test_get_aget_installer_instruction.py +57 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/report_vulnerabilities/test_get_report_vulnerabilities.py +61 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/__init__.py +20 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/test_clone_target.py +26 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/test_create_target.py +255 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/test_delete_target.py +29 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/test_get_target.py +41 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/test_get_targets.py +43 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/targets/test_modify_target.py +233 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/__init__.py +4 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/tasks/test_create_web_application_task.py +227 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_modify_task.py +33 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/test_agent_installer_instructions.py +15 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/test_report_vulnerabilities.py +15 -0
- {python_gvm-27.1.0/tests/protocols/gmpv227 → python_gvm-27.3.0/tests/protocols/gmpnext}/entities/test_targets.py +2 -2
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_tasks.py +7 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/test_web_application_targets.py +50 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/__init__.py +32 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/test_clone_web_application_target.py +26 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/test_create_web_application_target.py +85 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/test_delete_web_application_target.py +31 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/test_get_web_application_target.py +45 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/test_get_web_application_targets.py +53 -0
- python_gvm-27.3.0/tests/protocols/gmpnext/entities/web_application_targets/test_modify_web_application_target.py +91 -0
- {python_gvm-27.1.0/tests/protocols/gmpv227 → python_gvm-27.3.0/tests/protocols/gmpnext}/enums/test_alive_test.py +7 -2
- {python_gvm-27.1.0 → python_gvm-27.3.0}/uv.lock +7 -7
- python_gvm-27.1.0/gvm/protocols/gmp/requests/next/_agent_installers.py +0 -81
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer.py +0 -22
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installer_file.py +0 -22
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/agent_installers/test_get_agent_installers.py +0 -47
- python_gvm-27.1.0/tests/protocols/gmpnext/entities/test_agent_installers.py +0 -31
- {python_gvm-27.1.0 → python_gvm-27.3.0}/.gitignore +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/LICENSE +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/README.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/Makefile +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/_static/custom.css +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/_static/greenbone.png +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/_static/logo.svg +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/api.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/connections.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/errors.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/gmp.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/gmpnext.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/gmpv224.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/gmpv225.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/gmpv226.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/gmpv227.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/http.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/main.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/openvasdv1/health.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/openvasdv1/metadata.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/openvasdv1/notus.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/openvasdv1/scans.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/openvasdv1/vts.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/openvasdv1.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/ospv1.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/other.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/protocols.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/api/transforms.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/conf.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/favicon.png +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/index.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/install.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/requirements.txt +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/docs/usage.md +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/_enum.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/connections/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/connections/_connection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/connections/_debug.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/connections/_ssh.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/connections/_tls.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/connections/_unix.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/errors.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/_protocol.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/core/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/core/_connection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/core/_request.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/core/_response.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/_gmp.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/_gmp224.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/_gmp225.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/_gmp226.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/_gmp227.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/_entity_id.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_agents.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_credential_stores.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_integration_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_oci_image_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_applications.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_closed_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_errors.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_ports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/next/_report_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_aggregates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_auth.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_cert_bund_advisories.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_cpes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_dfn_cert_advisories.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_entity_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_feed.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_nvts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_severity.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_system_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_user_settings.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v224/_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v225/_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v226/_audit_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v226/_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v226/_report_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v226/_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v226/_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v227/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/gmp/requests/v227/_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_api.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_client.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_health.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_metadata.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_notus.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_openvasd1.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_scans.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/http/openvasd/_vts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/latest.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/next.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/protocols/ospv1.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/py.typed +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/transforms.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/utils.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/gvm/xml.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/connections/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/connections/test_ssh_connection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/connections/test_tls_connection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/core/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/core/test_connection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/core/test_request.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/core/test_response.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/core/test_states.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/core/test_xml_reader.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/test_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_aggregates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_auth.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_cert_bund_advisories.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_cpes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_dfn_cert_advisories.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_feed.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_nvts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_system_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_user_settings.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v224/test_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v225/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v225/test_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/test_audit_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/test_filter_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/test_report_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/requests/v226/test_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmp/test_context_manager.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/test_clone_agent_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/test_delete_agent_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agent_groups/test_get_agent_groups.py +0 -0
- {python_gvm-27.1.0/tests/protocols/gmpnext/entities/agent_installers → python_gvm-27.3.0/tests/protocols/gmpnext/entities/agent_installer_instructions}/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agents/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agents/test_delete_agents.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agents/test_get_agents.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agents/test_modify_agent_controller_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agents/test_modify_agents.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/agents/test_sync_agents.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credential_stores/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credential_stores/test_get_credential_stores.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credential_stores/test_modify_credential_stores.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credential_stores/test_verify_credential_stores.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credentials/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credentials/test_create_credential_store_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/credentials/test_modify_credential_store_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/integration_configs/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/integration_configs/test_get_integration_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/integration_configs/test_get_integration_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/integration_configs/test_modify_integration_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_clone_oci_image_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_create_oci_image_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_delete_oci_image_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_get_oci_image_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/oci_image_targets/test_modify_oci_image_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_applications/test_get_report_applications.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_closed_cves/test_get_report_closed_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_cves/test_get_report_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_errors/test_get_report_errors.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_hosts/test_get_report_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_operating_systems/test_get_report_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_ports/test_get_report_ports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/report_tls_certificates/test_get_report_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_create_agent_group_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_create_container_image_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_create_import_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_create_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_get_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_move_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_start_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_agent_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_agents.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_audit_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_credential_stores.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_integration_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_oci_image_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_applications.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_closed_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_errors.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_ports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_report_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_alert_condition.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_alert_event.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_alert_method.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_credential_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_credential_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_entity_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_feed_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_filter_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_help_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_info_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_port_range_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_report_format_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_resource_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_scanner_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_sort_order.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_ticket_status.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpnext/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_modify_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_create_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_get_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_get_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_modify_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_start_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/test_create_filter.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/test_get_filter.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/test_get_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/filters/test_modify_filter.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/test_clone_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/test_create_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/test_delete_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/test_get_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/test_get_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/groups/test_modify_group.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/hosts/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/hosts/test_create_host.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/hosts/test_get_host.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/hosts/test_modify_host.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/test_clone_note.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/test_create_note.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/test_delete_note.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/test_get_note.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/test_get_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/operating_systems/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/operating_systems/test_modify_operating_system.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/test_get_override.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_create_policy.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_get_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_get_policy.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_import_policy.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_comment.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_name.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_clone_report_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_delete_report_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_import_report_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_modify_report_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/report_formats/test_verify_report_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/reports/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/reports/test_delete_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/reports/test_get_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/reports/test_get_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/reports/test_import_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/results/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/results/test_get_result.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/results/test_get_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/test_clone_role.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/test_create_role.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/test_delete_role.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/test_get_role.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/test_get_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/roles/test_modify_role.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/test_create_schedule.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/schedules/test_modify_schedule.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/test_create_tag.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/test_get_tag.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/test_get_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tags/test_modify_tag.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/test_clone_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/test_delete_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/test_get_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/test_get_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_create_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_get_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_move_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_start_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/test_clone_tls_certificate.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/test_clone_user.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/test_delete_user.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/test_get_user.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/test_get_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/users/test_modify_user.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/aggregates/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/authentication/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/authentication/test_authenticate.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/feed/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/feed/test_get_feed.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/feed/test_get_feeds.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/help/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/help/test_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/system_reports/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/trashcan/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/user_settings/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/user_settings/test_modify_user_setting.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/system/versions/test_get_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/resourcenames/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_alert_condition.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_alert_event.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_alert_method.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_alive_test.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_credential_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_credential_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_entity_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_feed_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_filter_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_help_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_info_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_port_range_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_report_format_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_resource_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_scanner_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_sort_order.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_ticket_status.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_aggregates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_authentication.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_feed.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_system_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_user_settings.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/test_versions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/versions/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/test_gmp_types.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv225/test_with_statement.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/audit_reports/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/audit_reports/test_delete_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/audit_reports/test_get_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/test_clone_report_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/test_create_report_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/test_delete_report_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/test_get_report_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/report_configs/test_modify_report_config.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/reports/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/reports/test_delete_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/reports/test_get_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/reports/test_get_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/reports/test_import_report.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/resourcenames/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_name.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/resourcenames/test_get_resource_names_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_audit_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_report_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_tags.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_alert_condition.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_alert_event.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_alert_method.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_alive_test.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_credential_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_credential_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_entity_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_feed_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_filter_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_help_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_info_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_port_range_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_report_format_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_resource_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_scanner_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_sort_order.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_ticket_status.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_aggregates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_authentication.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_feed.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_system_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_trashcan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_user_settings.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/test_versions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/versions/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/test_gmp_types.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv226/test_with_statement.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/scanners/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_alerts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_audit_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_audits.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_credentials.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_filters.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_groups.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_hosts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_notes.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_operating_systems.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_overrides.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_permissions.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_policies.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_port_lists.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_report_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_report_formats.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_reports.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_resource_names.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_results.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_roles.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_scan_configs.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_scanners.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_schedules.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_secinfo.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_tags.py +0 -0
- {python_gvm-27.1.0/tests/protocols/gmpnext → python_gvm-27.3.0/tests/protocols/gmpv227}/entities/test_targets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_tasks.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_tickets.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_tls_certificates.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_users.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/entities/test_vulnerabilities.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_alert_condition.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_alert_event.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_alert_method.py +0 -0
- {python_gvm-27.1.0/tests/protocols/gmpnext → python_gvm-27.3.0/tests/protocols/gmpv227}/enums/test_alive_test.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_credential_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_credential_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_entity_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_feed_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_filter_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_help_format.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_hosts_ordering.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_info_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_permission_subject_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_port_range_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_report_format_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_resource_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_scanner_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_sort_order.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_ticket_status.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/gmpv227/enums/test_user_auth_type.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_client.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_health.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_metadata.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_notus.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_openvasd1.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_scans.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/http/openvasd/test_vts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_start_scan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/test_latest.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/protocols/test_next.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/test_enum.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/test_errors.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/transforms/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_check_port.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/xml/__init__.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/xml/test.file +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/xml/test_parse_xml.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-27.1.0 → python_gvm-27.3.0}/tests/xml/test_xml_command.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-gvm
|
|
3
|
-
Version: 27.
|
|
3
|
+
Version: 27.3.0
|
|
4
4
|
Summary: Library to communicate with remote servers over GMP or OSP
|
|
5
5
|
Project-URL: Homepage, https://github.com/greenbone/python-gvm/
|
|
6
6
|
Project-URL: Repository, https://github.com/greenbone/python-gvm/
|
|
@@ -12,8 +12,10 @@ from .._protocol import T
|
|
|
12
12
|
from ._gmp227 import GMPv227
|
|
13
13
|
from .requests.next import (
|
|
14
14
|
AgentGroups,
|
|
15
|
-
|
|
15
|
+
AgentInstallerInstructionLanguageType,
|
|
16
|
+
AgentInstallerInstructions,
|
|
16
17
|
Agents,
|
|
18
|
+
AliveTest,
|
|
17
19
|
Credentials,
|
|
18
20
|
CredentialStoreCredentialType,
|
|
19
21
|
CredentialStores,
|
|
@@ -27,8 +29,12 @@ from .requests.next import (
|
|
|
27
29
|
ReportOperatingSystems,
|
|
28
30
|
ReportPorts,
|
|
29
31
|
ReportTlsCertificates,
|
|
32
|
+
ReportVulnerabilities,
|
|
33
|
+
Targets,
|
|
30
34
|
Tasks,
|
|
35
|
+
WebApplicationTargets,
|
|
31
36
|
)
|
|
37
|
+
from .requests.v224 import AliveTest as AliveTestV224
|
|
32
38
|
from .requests.v224 import HostsOrdering
|
|
33
39
|
|
|
34
40
|
|
|
@@ -54,52 +60,25 @@ class GMPNext(GMPv227[T]):
|
|
|
54
60
|
def get_protocol_version() -> tuple[int, int]:
|
|
55
61
|
return (22, 8)
|
|
56
62
|
|
|
57
|
-
def
|
|
63
|
+
def get_agent_installer_instruction(
|
|
58
64
|
self,
|
|
59
65
|
*,
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
trash: bool | None = None,
|
|
63
|
-
details: bool | None = None,
|
|
66
|
+
scanner_id: EntityID,
|
|
67
|
+
language_type: AgentInstallerInstructionLanguageType,
|
|
64
68
|
) -> T:
|
|
65
|
-
"""Request
|
|
69
|
+
"""Request an agent installer instruction.
|
|
66
70
|
|
|
67
71
|
Args:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
trash: Whether to get the trashcan agent installers instead
|
|
71
|
-
details: Whether to include extra details like tasks using this
|
|
72
|
-
scanner
|
|
72
|
+
scanner_id: UUID of the Agent controller to get the installer instruction for.
|
|
73
|
+
language_type: Language of the installer instruction.
|
|
73
74
|
"""
|
|
74
75
|
return self._send_request_and_transform_response(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
trash=trash,
|
|
79
|
-
details=details,
|
|
76
|
+
AgentInstallerInstructions.get_agent_installer_instruction(
|
|
77
|
+
scanner_id=scanner_id,
|
|
78
|
+
language_type=language_type,
|
|
80
79
|
)
|
|
81
80
|
)
|
|
82
81
|
|
|
83
|
-
def get_agent_installer(self, agent_installer_id: EntityID) -> T:
|
|
84
|
-
"""Request a single agent installer
|
|
85
|
-
|
|
86
|
-
Args:
|
|
87
|
-
agent_installer_id: UUID of an existing agent installer
|
|
88
|
-
"""
|
|
89
|
-
return self._send_request_and_transform_response(
|
|
90
|
-
AgentInstallers.get_agent_installer(agent_installer_id)
|
|
91
|
-
)
|
|
92
|
-
|
|
93
|
-
def get_agent_installer_file(self, agent_installer_id: EntityID) -> T:
|
|
94
|
-
"""Request a single agent installer file
|
|
95
|
-
|
|
96
|
-
Args:
|
|
97
|
-
agent_installer_id: UUID of an existing agent installer
|
|
98
|
-
"""
|
|
99
|
-
return self._send_request_and_transform_response(
|
|
100
|
-
AgentInstallers.get_agent_installer_file(agent_installer_id)
|
|
101
|
-
)
|
|
102
|
-
|
|
103
82
|
def get_agents(
|
|
104
83
|
self,
|
|
105
84
|
*,
|
|
@@ -227,6 +206,7 @@ class GMPNext(GMPv227[T]):
|
|
|
227
206
|
self,
|
|
228
207
|
name: str,
|
|
229
208
|
agent_ids: list[str],
|
|
209
|
+
scheduler_cron_time: str,
|
|
230
210
|
*,
|
|
231
211
|
comment: str | None = None,
|
|
232
212
|
) -> T:
|
|
@@ -235,6 +215,7 @@ class GMPNext(GMPv227[T]):
|
|
|
235
215
|
Args:
|
|
236
216
|
name: Name of the new agent group.
|
|
237
217
|
agent_ids: List of agent UUIDs to include in the group (required).
|
|
218
|
+
scheduler_cron_time: Scheduler cron to use.
|
|
238
219
|
comment: Optional comment for the group.
|
|
239
220
|
|
|
240
221
|
Raises:
|
|
@@ -245,12 +226,14 @@ class GMPNext(GMPv227[T]):
|
|
|
245
226
|
name=name,
|
|
246
227
|
comment=comment,
|
|
247
228
|
agent_ids=agent_ids,
|
|
229
|
+
scheduler_cron_time=scheduler_cron_time,
|
|
248
230
|
)
|
|
249
231
|
)
|
|
250
232
|
|
|
251
233
|
def modify_agent_group(
|
|
252
234
|
self,
|
|
253
235
|
agent_group_id: EntityID,
|
|
236
|
+
scheduler_cron_time: str,
|
|
254
237
|
*,
|
|
255
238
|
name: str | None = None,
|
|
256
239
|
comment: str | None = None,
|
|
@@ -261,6 +244,7 @@ class GMPNext(GMPv227[T]):
|
|
|
261
244
|
Args:
|
|
262
245
|
agent_group_id: UUID of the group to modify.
|
|
263
246
|
name: Optional new name for the group.
|
|
247
|
+
scheduler_cron_time: Scheduler cron to use.
|
|
264
248
|
comment: Optional comment for the group.
|
|
265
249
|
agent_ids: Optional list of agent UUIDs to set for the group.
|
|
266
250
|
|
|
@@ -273,6 +257,7 @@ class GMPNext(GMPv227[T]):
|
|
|
273
257
|
name=name,
|
|
274
258
|
comment=comment,
|
|
275
259
|
agent_ids=agent_ids,
|
|
260
|
+
scheduler_cron_time=scheduler_cron_time,
|
|
276
261
|
)
|
|
277
262
|
)
|
|
278
263
|
|
|
@@ -724,6 +709,49 @@ class GMPNext(GMPv227[T]):
|
|
|
724
709
|
Tasks.create_container_task(name=name, comment=comment)
|
|
725
710
|
)
|
|
726
711
|
|
|
712
|
+
def create_web_application_task(
|
|
713
|
+
self,
|
|
714
|
+
name: str,
|
|
715
|
+
web_application_target_id: EntityID,
|
|
716
|
+
scanner_id: EntityID,
|
|
717
|
+
*,
|
|
718
|
+
comment: str | None = None,
|
|
719
|
+
alterable: bool | None = None,
|
|
720
|
+
schedule_id: EntityID | None = None,
|
|
721
|
+
alert_ids: Sequence[EntityID] | None = None,
|
|
722
|
+
schedule_periods: int | None = None,
|
|
723
|
+
observers: Sequence[str] | None = None,
|
|
724
|
+
preferences: Mapping[str, SupportsStr] | None = None,
|
|
725
|
+
) -> T:
|
|
726
|
+
"""Create a new scan task using a web application target.
|
|
727
|
+
|
|
728
|
+
Args:
|
|
729
|
+
name: Name of the new task.
|
|
730
|
+
web_application_target_id: UUID of the web application target to be scanned.
|
|
731
|
+
scanner_id: UUID of scanner to use for scanning the agents.
|
|
732
|
+
comment: Optional comment for the task.
|
|
733
|
+
alterable: Whether the task should be alterable.
|
|
734
|
+
alert_ids: List of UUIDs for alerts to be applied to the task.
|
|
735
|
+
schedule_id: UUID of a schedule when the task should be run.
|
|
736
|
+
schedule_periods: Limit to number of scheduled runs, 0 for unlimited.
|
|
737
|
+
observers: List of usernames or IDs allowed to observe the task.
|
|
738
|
+
preferences: Scanner preferences as name/value pairs.
|
|
739
|
+
"""
|
|
740
|
+
return self._send_request_and_transform_response(
|
|
741
|
+
Tasks.create_web_application_task(
|
|
742
|
+
name=name,
|
|
743
|
+
web_application_target_id=web_application_target_id,
|
|
744
|
+
scanner_id=scanner_id,
|
|
745
|
+
comment=comment,
|
|
746
|
+
alterable=alterable,
|
|
747
|
+
schedule_id=schedule_id,
|
|
748
|
+
alert_ids=alert_ids,
|
|
749
|
+
schedule_periods=schedule_periods,
|
|
750
|
+
observers=observers,
|
|
751
|
+
preferences=preferences,
|
|
752
|
+
)
|
|
753
|
+
)
|
|
754
|
+
|
|
727
755
|
def create_task(
|
|
728
756
|
self,
|
|
729
757
|
name: str,
|
|
@@ -841,6 +869,7 @@ class GMPNext(GMPv227[T]):
|
|
|
841
869
|
scanner_id: EntityID | None = None,
|
|
842
870
|
agent_group_id: EntityID | None = None,
|
|
843
871
|
oci_image_target_id: EntityID | None = None,
|
|
872
|
+
web_application_target_id: EntityID | None = None,
|
|
844
873
|
alterable: bool | None = None,
|
|
845
874
|
hosts_ordering: HostsOrdering | None = None,
|
|
846
875
|
schedule_id: EntityID | None = None,
|
|
@@ -860,6 +889,7 @@ class GMPNext(GMPv227[T]):
|
|
|
860
889
|
scanner_id: UUID of scanner to use for scanning the target
|
|
861
890
|
agent_group_id: UUID of agent group to use for scanning
|
|
862
891
|
oci_image_target_id: UUID of the OCI Image target to be scanned.
|
|
892
|
+
web_application_target_id: UUID of the web application target to be scanned.
|
|
863
893
|
comment: The comment on the task.
|
|
864
894
|
alert_ids: List of UUIDs for alerts to be applied to the task
|
|
865
895
|
hosts_ordering: The order hosts are scanned in
|
|
@@ -879,6 +909,7 @@ class GMPNext(GMPv227[T]):
|
|
|
879
909
|
scanner_id=scanner_id,
|
|
880
910
|
agent_group_id=agent_group_id,
|
|
881
911
|
oci_image_target_id=oci_image_target_id,
|
|
912
|
+
web_application_target_id=web_application_target_id,
|
|
882
913
|
alterable=alterable,
|
|
883
914
|
hosts_ordering=hosts_ordering,
|
|
884
915
|
schedule_id=schedule_id,
|
|
@@ -1234,3 +1265,353 @@ class GMPNext(GMPv227[T]):
|
|
|
1234
1265
|
details=details,
|
|
1235
1266
|
)
|
|
1236
1267
|
)
|
|
1268
|
+
|
|
1269
|
+
def get_report_vulnerabilities(
|
|
1270
|
+
self,
|
|
1271
|
+
report_id: EntityID,
|
|
1272
|
+
*,
|
|
1273
|
+
filter_string: str | None = None,
|
|
1274
|
+
filter_id: str | None = None,
|
|
1275
|
+
ignore_pagination: bool | None = None,
|
|
1276
|
+
details: bool | None = True,
|
|
1277
|
+
) -> T:
|
|
1278
|
+
"""Request vulnerabilities of a single report.
|
|
1279
|
+
|
|
1280
|
+
Args:
|
|
1281
|
+
report_id: UUID of an existing report.
|
|
1282
|
+
filter_string: Filter term to use to filter results in the report
|
|
1283
|
+
filter_id: UUID of filter to use to filter results in the report
|
|
1284
|
+
ignore_pagination: Whether to ignore the filter terms "first" and
|
|
1285
|
+
"rows".
|
|
1286
|
+
details: Request additional report vulnerability information details.
|
|
1287
|
+
Defaults to True.
|
|
1288
|
+
"""
|
|
1289
|
+
return self._send_request_and_transform_response(
|
|
1290
|
+
ReportVulnerabilities.get_report_vulnerabilities(
|
|
1291
|
+
report_id=report_id,
|
|
1292
|
+
filter_string=filter_string,
|
|
1293
|
+
filter_id=filter_id,
|
|
1294
|
+
ignore_pagination=ignore_pagination,
|
|
1295
|
+
details=details,
|
|
1296
|
+
)
|
|
1297
|
+
)
|
|
1298
|
+
|
|
1299
|
+
def create_web_application_target(
|
|
1300
|
+
self,
|
|
1301
|
+
name: str,
|
|
1302
|
+
urls: list[str],
|
|
1303
|
+
*,
|
|
1304
|
+
comment: str | None = None,
|
|
1305
|
+
exclude_urls: list[str] | None = None,
|
|
1306
|
+
credential_id: EntityID | None = None,
|
|
1307
|
+
) -> T:
|
|
1308
|
+
"""Create a new web application target.
|
|
1309
|
+
|
|
1310
|
+
Args:
|
|
1311
|
+
name: Name of the web application target.
|
|
1312
|
+
urls: List of URLs to scan.
|
|
1313
|
+
comment: Comment for the target.
|
|
1314
|
+
exclude_urls: List of URLs to exclude from the scan.
|
|
1315
|
+
credential_id: UUID of a credential to use on target.
|
|
1316
|
+
"""
|
|
1317
|
+
return self._send_request_and_transform_response(
|
|
1318
|
+
WebApplicationTargets.create_web_application_target(
|
|
1319
|
+
name=name,
|
|
1320
|
+
urls=urls,
|
|
1321
|
+
comment=comment,
|
|
1322
|
+
exclude_urls=exclude_urls,
|
|
1323
|
+
credential_id=credential_id,
|
|
1324
|
+
)
|
|
1325
|
+
)
|
|
1326
|
+
|
|
1327
|
+
def modify_web_application_target(
|
|
1328
|
+
self,
|
|
1329
|
+
web_application_target_id: EntityID,
|
|
1330
|
+
*,
|
|
1331
|
+
name: str | None = None,
|
|
1332
|
+
comment: str | None = None,
|
|
1333
|
+
urls: list[str] | None = None,
|
|
1334
|
+
exclude_urls: list[str] | None = None,
|
|
1335
|
+
credential_id: EntityID | None = None,
|
|
1336
|
+
) -> T:
|
|
1337
|
+
"""Modify an existing web application target.
|
|
1338
|
+
|
|
1339
|
+
Args:
|
|
1340
|
+
web_application_target_id: UUID of target to modify.
|
|
1341
|
+
name: Name of target.
|
|
1342
|
+
comment: Comment on target.
|
|
1343
|
+
urls: List of URLs to scan.
|
|
1344
|
+
exclude_urls: List of URLs to exclude from the scan.
|
|
1345
|
+
credential_id: UUID of credential to use on target.
|
|
1346
|
+
"""
|
|
1347
|
+
return self._send_request_and_transform_response(
|
|
1348
|
+
WebApplicationTargets.modify_web_application_target(
|
|
1349
|
+
web_application_target_id,
|
|
1350
|
+
name=name,
|
|
1351
|
+
comment=comment,
|
|
1352
|
+
urls=urls,
|
|
1353
|
+
exclude_urls=exclude_urls,
|
|
1354
|
+
credential_id=credential_id,
|
|
1355
|
+
)
|
|
1356
|
+
)
|
|
1357
|
+
|
|
1358
|
+
def clone_web_application_target(
|
|
1359
|
+
self, web_application_target_id: EntityID
|
|
1360
|
+
) -> T:
|
|
1361
|
+
"""Clone an existing web application target.
|
|
1362
|
+
|
|
1363
|
+
Args:
|
|
1364
|
+
web_application_target_id: UUID of an existing web application target to clone.
|
|
1365
|
+
"""
|
|
1366
|
+
return self._send_request_and_transform_response(
|
|
1367
|
+
WebApplicationTargets.clone_web_application_target(
|
|
1368
|
+
web_application_target_id
|
|
1369
|
+
)
|
|
1370
|
+
)
|
|
1371
|
+
|
|
1372
|
+
def delete_web_application_target(
|
|
1373
|
+
self,
|
|
1374
|
+
web_application_target_id: EntityID,
|
|
1375
|
+
*,
|
|
1376
|
+
ultimate: bool | None = False,
|
|
1377
|
+
) -> T:
|
|
1378
|
+
"""Delete an existing web application target.
|
|
1379
|
+
|
|
1380
|
+
Args:
|
|
1381
|
+
web_application_target_id: UUID of an existing web application target to delete.
|
|
1382
|
+
ultimate: Whether to remove entirely or to the trashcan.
|
|
1383
|
+
"""
|
|
1384
|
+
return self._send_request_and_transform_response(
|
|
1385
|
+
WebApplicationTargets.delete_web_application_target(
|
|
1386
|
+
web_application_target_id,
|
|
1387
|
+
ultimate=ultimate,
|
|
1388
|
+
)
|
|
1389
|
+
)
|
|
1390
|
+
|
|
1391
|
+
def get_web_application_target(
|
|
1392
|
+
self,
|
|
1393
|
+
web_application_target_id: EntityID,
|
|
1394
|
+
*,
|
|
1395
|
+
tasks: bool | None = None,
|
|
1396
|
+
) -> T:
|
|
1397
|
+
"""Request a single web application target.
|
|
1398
|
+
|
|
1399
|
+
Args:
|
|
1400
|
+
web_application_target_id: UUID of the web application target to request.
|
|
1401
|
+
tasks: Whether to include list of tasks that use the target.
|
|
1402
|
+
"""
|
|
1403
|
+
return self._send_request_and_transform_response(
|
|
1404
|
+
WebApplicationTargets.get_web_application_target(
|
|
1405
|
+
web_application_target_id,
|
|
1406
|
+
tasks=tasks,
|
|
1407
|
+
)
|
|
1408
|
+
)
|
|
1409
|
+
|
|
1410
|
+
def get_web_application_targets(
|
|
1411
|
+
self,
|
|
1412
|
+
*,
|
|
1413
|
+
filter_string: str | None = None,
|
|
1414
|
+
filter_id: EntityID | None = None,
|
|
1415
|
+
trash: bool | None = None,
|
|
1416
|
+
tasks: bool | None = None,
|
|
1417
|
+
) -> T:
|
|
1418
|
+
"""Request a list of web application targets.
|
|
1419
|
+
|
|
1420
|
+
Args:
|
|
1421
|
+
filter_string: Filter term to use for the query.
|
|
1422
|
+
filter_id: UUID of an existing filter to use for the query.
|
|
1423
|
+
trash: Whether to include targets in the trashcan.
|
|
1424
|
+
tasks: Whether to include list of tasks that use the target.
|
|
1425
|
+
"""
|
|
1426
|
+
return self._send_request_and_transform_response(
|
|
1427
|
+
WebApplicationTargets.get_web_application_targets(
|
|
1428
|
+
filter_string=filter_string,
|
|
1429
|
+
filter_id=filter_id,
|
|
1430
|
+
trash=trash,
|
|
1431
|
+
tasks=tasks,
|
|
1432
|
+
)
|
|
1433
|
+
)
|
|
1434
|
+
|
|
1435
|
+
def create_target(
|
|
1436
|
+
self,
|
|
1437
|
+
name: str,
|
|
1438
|
+
*,
|
|
1439
|
+
asset_hosts_filter: str | None = None,
|
|
1440
|
+
hosts: list[str] | None = None,
|
|
1441
|
+
comment: str | None = None,
|
|
1442
|
+
exclude_hosts: list[str] | None = None,
|
|
1443
|
+
ssh_credential_id: EntityID | None = None,
|
|
1444
|
+
ssh_credential_port: int | str | None = None,
|
|
1445
|
+
smb_credential_id: EntityID | None = None,
|
|
1446
|
+
esxi_credential_id: EntityID | None = None,
|
|
1447
|
+
snmp_credential_id: EntityID | None = None,
|
|
1448
|
+
alive_test: str | AliveTest | AliveTestV224 | None = None,
|
|
1449
|
+
allow_simultaneous_ips: bool | None = None,
|
|
1450
|
+
reverse_lookup_only: bool | None = None,
|
|
1451
|
+
reverse_lookup_unify: bool | None = None,
|
|
1452
|
+
port_range: str | None = None,
|
|
1453
|
+
port_list_id: EntityID | None = None,
|
|
1454
|
+
) -> T:
|
|
1455
|
+
"""Create a new target
|
|
1456
|
+
|
|
1457
|
+
Args:
|
|
1458
|
+
name: Name of the target
|
|
1459
|
+
asset_hosts_filter: Filter to select target host from assets hosts
|
|
1460
|
+
hosts: List of hosts addresses to scan
|
|
1461
|
+
exclude_hosts: List of hosts addresses to exclude from scan
|
|
1462
|
+
comment: Comment for the target
|
|
1463
|
+
ssh_credential_id: UUID of a ssh credential to use on target
|
|
1464
|
+
ssh_credential_port: The port to use for ssh credential
|
|
1465
|
+
smb_credential_id: UUID of a smb credential to use on target
|
|
1466
|
+
snmp_credential_id: UUID of a snmp credential to use on target
|
|
1467
|
+
esxi_credential_id: UUID of a esxi credential to use on target
|
|
1468
|
+
alive_test: Which alive test to use
|
|
1469
|
+
allow_simultaneous_ips: Whether to scan multiple IPs of the
|
|
1470
|
+
same host simultaneously
|
|
1471
|
+
reverse_lookup_only: Whether to scan only hosts that have names
|
|
1472
|
+
reverse_lookup_unify: Whether to scan only one IP when multiple IPs
|
|
1473
|
+
have the same name.
|
|
1474
|
+
port_range: Port range for the target
|
|
1475
|
+
port_list_id: UUID of the port list to use on target
|
|
1476
|
+
"""
|
|
1477
|
+
return self._send_request_and_transform_response(
|
|
1478
|
+
Targets.create_target(
|
|
1479
|
+
name,
|
|
1480
|
+
asset_hosts_filter=asset_hosts_filter,
|
|
1481
|
+
hosts=hosts,
|
|
1482
|
+
comment=comment,
|
|
1483
|
+
exclude_hosts=exclude_hosts,
|
|
1484
|
+
ssh_credential_id=ssh_credential_id,
|
|
1485
|
+
ssh_credential_port=ssh_credential_port,
|
|
1486
|
+
smb_credential_id=smb_credential_id,
|
|
1487
|
+
esxi_credential_id=esxi_credential_id,
|
|
1488
|
+
snmp_credential_id=snmp_credential_id,
|
|
1489
|
+
alive_test=alive_test,
|
|
1490
|
+
allow_simultaneous_ips=allow_simultaneous_ips,
|
|
1491
|
+
reverse_lookup_only=reverse_lookup_only,
|
|
1492
|
+
reverse_lookup_unify=reverse_lookup_unify,
|
|
1493
|
+
port_range=port_range,
|
|
1494
|
+
port_list_id=port_list_id,
|
|
1495
|
+
)
|
|
1496
|
+
)
|
|
1497
|
+
|
|
1498
|
+
def modify_target(
|
|
1499
|
+
self,
|
|
1500
|
+
target_id: EntityID,
|
|
1501
|
+
*,
|
|
1502
|
+
name: str | None = None,
|
|
1503
|
+
comment: str | None = None,
|
|
1504
|
+
hosts: list[str] | None = None,
|
|
1505
|
+
exclude_hosts: list[str] | None = None,
|
|
1506
|
+
ssh_credential_id: EntityID | None = None,
|
|
1507
|
+
ssh_credential_port: str | int | None = None,
|
|
1508
|
+
smb_credential_id: EntityID | None = None,
|
|
1509
|
+
esxi_credential_id: EntityID | None = None,
|
|
1510
|
+
snmp_credential_id: EntityID | None = None,
|
|
1511
|
+
alive_test: str | AliveTest | AliveTestV224 | None = None,
|
|
1512
|
+
allow_simultaneous_ips: bool | None = None,
|
|
1513
|
+
reverse_lookup_only: bool | None = None,
|
|
1514
|
+
reverse_lookup_unify: bool | None = None,
|
|
1515
|
+
port_list_id: EntityID | None = None,
|
|
1516
|
+
) -> T:
|
|
1517
|
+
"""Modify an existing target.
|
|
1518
|
+
|
|
1519
|
+
Args:
|
|
1520
|
+
target_id: UUID of target to modify.
|
|
1521
|
+
comment: Comment on target.
|
|
1522
|
+
name: Name of target.
|
|
1523
|
+
hosts: List of target hosts.
|
|
1524
|
+
exclude_hosts: A list of hosts to exclude.
|
|
1525
|
+
ssh_credential_id: UUID of SSH credential to use on target.
|
|
1526
|
+
ssh_credential_port: The port to use for ssh credential
|
|
1527
|
+
smb_credential_id: UUID of SMB credential to use on target.
|
|
1528
|
+
esxi_credential_id: UUID of ESXi credential to use on target.
|
|
1529
|
+
snmp_credential_id: UUID of SNMP credential to use on target.
|
|
1530
|
+
port_list_id: UUID of port list describing ports to scan.
|
|
1531
|
+
alive_test: Which alive tests to use.
|
|
1532
|
+
allow_simultaneous_ips: Whether to scan multiple IPs of the
|
|
1533
|
+
same host simultaneously
|
|
1534
|
+
reverse_lookup_only: Whether to scan only hosts that have names.
|
|
1535
|
+
reverse_lookup_unify: Whether to scan only one IP when multiple IPs
|
|
1536
|
+
have the same name.
|
|
1537
|
+
"""
|
|
1538
|
+
return self._send_request_and_transform_response(
|
|
1539
|
+
Targets.modify_target(
|
|
1540
|
+
target_id,
|
|
1541
|
+
name=name,
|
|
1542
|
+
comment=comment,
|
|
1543
|
+
hosts=hosts,
|
|
1544
|
+
exclude_hosts=exclude_hosts,
|
|
1545
|
+
ssh_credential_id=ssh_credential_id,
|
|
1546
|
+
ssh_credential_port=ssh_credential_port,
|
|
1547
|
+
smb_credential_id=smb_credential_id,
|
|
1548
|
+
esxi_credential_id=esxi_credential_id,
|
|
1549
|
+
snmp_credential_id=snmp_credential_id,
|
|
1550
|
+
alive_test=alive_test,
|
|
1551
|
+
allow_simultaneous_ips=allow_simultaneous_ips,
|
|
1552
|
+
reverse_lookup_only=reverse_lookup_only,
|
|
1553
|
+
reverse_lookup_unify=reverse_lookup_unify,
|
|
1554
|
+
port_list_id=port_list_id,
|
|
1555
|
+
)
|
|
1556
|
+
)
|
|
1557
|
+
|
|
1558
|
+
def clone_target(self, target_id: EntityID) -> T:
|
|
1559
|
+
"""Clone an existing target.
|
|
1560
|
+
|
|
1561
|
+
Args:
|
|
1562
|
+
target_id: UUID of an existing target to clone.
|
|
1563
|
+
"""
|
|
1564
|
+
return self._send_request_and_transform_response(
|
|
1565
|
+
Targets.clone_target(target_id)
|
|
1566
|
+
)
|
|
1567
|
+
|
|
1568
|
+
def delete_target(
|
|
1569
|
+
self, target_id: EntityID, *, ultimate: bool | None = False
|
|
1570
|
+
) -> T:
|
|
1571
|
+
"""Delete an existing target.
|
|
1572
|
+
|
|
1573
|
+
Args:
|
|
1574
|
+
target_id: UUID of an existing target to delete.
|
|
1575
|
+
ultimate: Whether to remove entirely or to the trashcan.
|
|
1576
|
+
"""
|
|
1577
|
+
return self._send_request_and_transform_response(
|
|
1578
|
+
Targets.delete_target(target_id, ultimate=ultimate)
|
|
1579
|
+
)
|
|
1580
|
+
|
|
1581
|
+
def get_target(
|
|
1582
|
+
self, target_id: EntityID, *, tasks: bool | None = None
|
|
1583
|
+
) -> T:
|
|
1584
|
+
"""Request a single target.
|
|
1585
|
+
|
|
1586
|
+
Args:
|
|
1587
|
+
target_id: UUID of the target to request.
|
|
1588
|
+
tasks: Whether to include list of tasks that use the target
|
|
1589
|
+
"""
|
|
1590
|
+
return self._send_request_and_transform_response(
|
|
1591
|
+
Targets.get_target(target_id, tasks=tasks)
|
|
1592
|
+
)
|
|
1593
|
+
|
|
1594
|
+
def get_targets(
|
|
1595
|
+
self,
|
|
1596
|
+
*,
|
|
1597
|
+
filter_string: str | None = None,
|
|
1598
|
+
filter_id: EntityID | None = None,
|
|
1599
|
+
trash: bool | None = None,
|
|
1600
|
+
tasks: bool | None = None,
|
|
1601
|
+
) -> T:
|
|
1602
|
+
"""Request a list of targets.
|
|
1603
|
+
|
|
1604
|
+
Args:
|
|
1605
|
+
filter_string: Filter term to use for the query.
|
|
1606
|
+
filter_id: UUID of an existing filter to use for the query.
|
|
1607
|
+
trash: Whether to include targets in the trashcan.
|
|
1608
|
+
tasks: Whether to include list of tasks that use the target.
|
|
1609
|
+
"""
|
|
1610
|
+
return self._send_request_and_transform_response(
|
|
1611
|
+
Targets.get_targets(
|
|
1612
|
+
filter_string=filter_string,
|
|
1613
|
+
filter_id=filter_id,
|
|
1614
|
+
trash=trash,
|
|
1615
|
+
tasks=tasks,
|
|
1616
|
+
)
|
|
1617
|
+
)
|
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
4
4
|
|
|
5
5
|
from gvm.protocols.gmp.requests.next._agent_groups import AgentGroups
|
|
6
|
-
from gvm.protocols.gmp.requests.next.
|
|
6
|
+
from gvm.protocols.gmp.requests.next._agent_installer_instructions import (
|
|
7
|
+
AgentInstallerInstructionLanguageType,
|
|
8
|
+
AgentInstallerInstructions,
|
|
9
|
+
)
|
|
7
10
|
from gvm.protocols.gmp.requests.next._agents import Agents
|
|
8
11
|
from gvm.protocols.gmp.requests.next._credential_stores import CredentialStores
|
|
9
12
|
from gvm.protocols.gmp.requests.next._credentials import (
|
|
@@ -38,7 +41,14 @@ from gvm.protocols.gmp.requests.next._report_ports import (
|
|
|
38
41
|
from gvm.protocols.gmp.requests.next._report_tls_certificates import (
|
|
39
42
|
ReportTlsCertificates,
|
|
40
43
|
)
|
|
44
|
+
from gvm.protocols.gmp.requests.next._report_vulnerabilities import (
|
|
45
|
+
ReportVulnerabilities,
|
|
46
|
+
)
|
|
47
|
+
from gvm.protocols.gmp.requests.next._targets import AliveTest, Targets
|
|
41
48
|
from gvm.protocols.gmp.requests.next._tasks import Tasks
|
|
49
|
+
from gvm.protocols.gmp.requests.next._web_application_targets import (
|
|
50
|
+
WebApplicationTargets,
|
|
51
|
+
)
|
|
42
52
|
|
|
43
53
|
from .._entity_id import EntityID
|
|
44
54
|
from .._version import Version
|
|
@@ -49,7 +59,6 @@ from ..v227 import (
|
|
|
49
59
|
AlertEvent,
|
|
50
60
|
AlertMethod,
|
|
51
61
|
Alerts,
|
|
52
|
-
AliveTest,
|
|
53
62
|
AuditReports,
|
|
54
63
|
Audits,
|
|
55
64
|
Authentication,
|
|
@@ -99,7 +108,6 @@ from ..v227 import (
|
|
|
99
108
|
SortOrder,
|
|
100
109
|
SystemReports,
|
|
101
110
|
Tags,
|
|
102
|
-
Targets,
|
|
103
111
|
Tickets,
|
|
104
112
|
TicketStatus,
|
|
105
113
|
TLSCertificates,
|
|
@@ -112,7 +120,8 @@ from ..v227 import (
|
|
|
112
120
|
|
|
113
121
|
__all__ = (
|
|
114
122
|
"AgentGroups",
|
|
115
|
-
"
|
|
123
|
+
"AgentInstallerInstructionLanguageType",
|
|
124
|
+
"AgentInstallerInstructions",
|
|
116
125
|
"Agents",
|
|
117
126
|
"AggregateStatistic",
|
|
118
127
|
"Aggregates",
|
|
@@ -168,6 +177,7 @@ __all__ = (
|
|
|
168
177
|
"ReportOperatingSystems",
|
|
169
178
|
"ReportPorts",
|
|
170
179
|
"ReportTlsCertificates",
|
|
180
|
+
"ReportVulnerabilities",
|
|
171
181
|
"Reports",
|
|
172
182
|
"ResourceNames",
|
|
173
183
|
"ResourceType",
|
|
@@ -195,4 +205,5 @@ __all__ = (
|
|
|
195
205
|
"Users",
|
|
196
206
|
"Version",
|
|
197
207
|
"Vulnerabilities",
|
|
208
|
+
"WebApplicationTargets",
|
|
198
209
|
)
|
|
@@ -16,6 +16,7 @@ class AgentGroups:
|
|
|
16
16
|
cls,
|
|
17
17
|
name: str,
|
|
18
18
|
agent_ids: list[str],
|
|
19
|
+
scheduler_cron_time: str,
|
|
19
20
|
*,
|
|
20
21
|
comment: str | None = None,
|
|
21
22
|
) -> Request:
|
|
@@ -24,6 +25,7 @@ class AgentGroups:
|
|
|
24
25
|
Args:
|
|
25
26
|
name: Name of the new agent group.
|
|
26
27
|
agent_ids: List of agent UUIDs to include in the group (required).
|
|
28
|
+
scheduler_cron_time: Cron-like time to schedule new agent groups (required).
|
|
27
29
|
comment: Optional comment for the group.
|
|
28
30
|
|
|
29
31
|
Raises:
|
|
@@ -38,9 +40,15 @@ class AgentGroups:
|
|
|
38
40
|
raise RequiredArgument(
|
|
39
41
|
function=cls.create_agent_group.__name__, argument="agent_ids"
|
|
40
42
|
)
|
|
43
|
+
if not scheduler_cron_time:
|
|
44
|
+
raise RequiredArgument(
|
|
45
|
+
function=cls.create_agent_group.__name__,
|
|
46
|
+
argument="scheduler_cron_time",
|
|
47
|
+
)
|
|
41
48
|
|
|
42
49
|
cmd = XmlCommand("create_agent_group")
|
|
43
50
|
cmd.add_element("name", name)
|
|
51
|
+
cmd.add_element("scheduler_cron_time", scheduler_cron_time)
|
|
44
52
|
|
|
45
53
|
if comment:
|
|
46
54
|
cmd.add_element("comment", comment)
|
|
@@ -76,6 +84,7 @@ class AgentGroups:
|
|
|
76
84
|
def modify_agent_group(
|
|
77
85
|
cls,
|
|
78
86
|
agent_group_id: EntityID,
|
|
87
|
+
scheduler_cron_time: str,
|
|
79
88
|
*,
|
|
80
89
|
name: str | None = None,
|
|
81
90
|
comment: str | None = None,
|
|
@@ -85,6 +94,7 @@ class AgentGroups:
|
|
|
85
94
|
|
|
86
95
|
Args:
|
|
87
96
|
agent_group_id: UUID of the group to modify.
|
|
97
|
+
scheduler_cron_time: Cron-like time to schedule the agent groups.
|
|
88
98
|
name: Optional new name for the group.
|
|
89
99
|
comment: Optional comment for the group.
|
|
90
100
|
agent_ids: Optional list of agent UUIDs to set for the group.
|
|
@@ -98,9 +108,15 @@ class AgentGroups:
|
|
|
98
108
|
argument="agent_group_id",
|
|
99
109
|
)
|
|
100
110
|
|
|
111
|
+
if not scheduler_cron_time:
|
|
112
|
+
raise RequiredArgument(
|
|
113
|
+
function=cls.modify_agent_group.__name__,
|
|
114
|
+
argument="scheduler_cron_time",
|
|
115
|
+
)
|
|
116
|
+
|
|
101
117
|
cmd = XmlCommand("modify_agent_group")
|
|
102
118
|
cmd.set_attribute("agent_group_id", str(agent_group_id))
|
|
103
|
-
|
|
119
|
+
cmd.add_element("scheduler_cron_time", scheduler_cron_time)
|
|
104
120
|
if name:
|
|
105
121
|
cmd.add_element("name", name)
|
|
106
122
|
|