python-gvm 23.11.0__tar.gz → 23.12.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-23.11.0 → python_gvm-23.12.0}/PKG-INFO +2 -2
- {python_gvm-23.11.0 → python_gvm-23.12.0}/README.md +1 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/__version__.py +1 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/__init__.py +4 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmp.py +4 -1
- python_gvm-23.12.0/gvm/protocols/gmpv225/__init__.py +210 -0
- python_gvm-23.12.0/gvm/protocols/gmpv225/entities/__init__.py +17 -0
- python_gvm-23.12.0/gvm/protocols/gmpv225/entities/resourcenames.py +159 -0
- python_gvm-23.12.0/gvm/protocols/gmpv225/system/__init__.py +17 -0
- python_gvm-23.12.0/gvm/protocols/gmpv225/system/version.py +36 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/latest.py +3 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/next.py +4 -2
- {python_gvm-23.11.0 → python_gvm-23.12.0}/pyproject.toml +1 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmp/test_context_manager.py +24 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/__init__.py +26 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/__init__.py +17 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/resourcenames/__init__.py +20 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_name.py +251 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/resourcenames/test_get_resource_names_list.py +207 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_alerts.py +61 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_audits.py +66 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_credentials.py +61 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_filters.py +51 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_groups.py +51 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_hosts.py +46 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_notes.py +53 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_operating_systems.py +49 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_overrides.py +59 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_permissions.py +61 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_policies.py +93 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_port_lists.py +71 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_report_formats.py +70 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_reports.py +41 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_resource_names.py +35 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_results.py +31 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_roles.py +51 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_scan_configs.py +110 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_scanners.py +53 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_schedules.py +57 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_secinfo.py +116 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_tags.py +51 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_targets.py +53 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_tasks.py +78 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_tickets.py +51 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_tls_certificates.py +63 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_users.py +130 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/entities/test_vulnerabilities.py +35 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/__init__.py +17 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_aggregate_statistic.py +74 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_alert_condition.py +62 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_alert_event.py +62 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_alert_method.py +86 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_alive_test.py +78 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_credential_format.py +58 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_credential_type.py +62 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_entity_type.py +179 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_feed_type.py +54 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_filter_type.py +151 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_help_format.py +54 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_hosts_ordering.py +46 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_info_type copy.py +66 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_permission_subject_type.py +50 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_port_range_type.py +46 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_report_format_type.py +114 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_resource_type.py +146 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_scanner_type.py +66 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_severity_level.py +58 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_snmp_algorithms.py +62 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_sort_order.py +46 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_ticket_status.py +46 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/enums/test_user_auth_type.py +50 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/__init__.py +17 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_aggregates.py +24 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_authentication.py +38 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_feed.py +28 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_help.py +24 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_system_reports.py +26 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_trashcan.py +33 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_user_settings.py +42 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/test_versions.py +31 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/versions/__init__.py +19 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/system/versions/test_get_protocol_version.py +22 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/test_gmp_types.py +50 -0
- python_gvm-23.12.0/tests/protocols/gmpv225/test_with_statement.py +35 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/test_latest.py +1 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/test_next.py +1 -1
- {python_gvm-23.11.0 → python_gvm-23.12.0}/LICENSE +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/connections.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/errors.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/base.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/alerts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/audits.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/credentials.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/entities.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/groups.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/hosts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/notes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/operating_systems.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/overrides.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/permissions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/policies.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/port_lists.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/report_formats.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/results.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/roles.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/schedules.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/secinfo.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/severity.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/tags.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/targets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/tasks.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/tickets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/tls_certificates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/entities/vulnerabilities.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/aggregates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/authentication.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/feed.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/help.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/system_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/trashcan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/user_settings.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv208/system/version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/entities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/entities/notes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/entities/overrides.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/entities/scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/entities/targets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/entities/users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/system/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv214/system/version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/entities/scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/entities/scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/entities/users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/gmpv224/system/version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/protocols/ospv1.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/py.typed +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/transforms.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/utils.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/gvm/xml.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/connections/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/connections/test_gvm_connection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/connections/test_ssh_connection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/connections/test_tls_connection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/connections/test_unix_socket_connection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmp/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_clone_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_create_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_delete_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_get_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_get_alerts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_modify_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_test_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/alerts/test_trigger_alert.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_clone_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_create_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_delete_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_get_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_get_audits.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_modify_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_resume_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_start_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/audits/test_stop_audit.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/test_clone_credential.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/test_create_credential.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/test_delete_credential.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/test_get_credential.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/test_get_credentials.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/credentials/test_modify_credential.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/test_clone_filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/test_create_filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/test_delete_filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/test_get_filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/test_get_filters.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/filters/test_modify_filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/test_clone_group.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/test_create_group.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/test_delete_group.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/test_get_group.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/test_get_groups.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/groups/test_modify_group.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/hosts/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/hosts/test_create_host.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/hosts/test_delete_host.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/hosts/test_get_host.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/hosts/test_get_hosts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/hosts/test_modify_host.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/test_clone_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/test_create_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/test_delete_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/test_get_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/test_get_notes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/notes/test_modify_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/operating_systems/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/operating_systems/test_delete_operating_system.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/operating_systems/test_get_operating_system.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/operating_systems/test_get_operating_systems.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/operating_systems/test_modify_operating_system.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/test_clone_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/test_create_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/test_delete_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/test_get_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/test_get_overrides.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/test_clone_permission.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/test_create_permission.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/test_delete_permission.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/test_get_permission.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/test_get_permissions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/permissions/test_modify_permission.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_clone_policy.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_create_policy.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_delete_policy.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_get_policies.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_get_policy.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_import_policy.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_modify_policy_set_comment.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_modify_policy_set_family_selection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_modify_policy_set_name.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_modify_policy_set_nvt_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_modify_policy_set_nvt_selection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/policies/test_modify_policy_set_scanner_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_clone_port_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_create_port_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_create_port_range.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_delete_port_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_delete_port_range.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_get_port_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_get_port_lists.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/port_lists/test_modify_port_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_clone_report_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_delete_report_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_get_report_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_get_report_formats.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_import_report_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_modify_report_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/report_formats/test_verify_report_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/reports/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/reports/test_delete_report.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/reports/test_get_report.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/reports/test_get_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/reports/test_import_report.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/results/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/results/test_get_result.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/results/test_get_results.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/test_clone_role.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/test_create_role.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/test_delete_role.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/test_get_role.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/test_get_roles.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/roles/test_modify_role.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_create_scan_config_from_osp_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scan_configs/test_sync_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_clone_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_delete_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_get_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_get_scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/scanners/test_verify_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/test_clone_schedule.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/test_create_schedule.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/test_delete_schedule.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/test_get_schedule.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/test_get_schedules.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/schedules/test_modify_schedule.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_cert_bund_advisories.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_cert_bund_advisory.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_cpe.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_cpes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_cve.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_cves.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_dfn_cert_advisories.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_dfn_cert_advisory.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_info.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_info_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_nvt.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_nvt_families.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_nvt_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_nvt_preferences.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_nvts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_oval_definition.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_oval_definitions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_scan_config_nvt.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/secinfo/test_get_scan_config_nvts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/test_clone_tag.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/test_create_tag.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/test_delete_tag.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/test_get_tag.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/test_get_tags.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tags/test_modify_tag.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/test_clone_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/test_create_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/test_delete_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/test_get_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/test_get_targets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/targets/test_modify_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_clone_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_create_container_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_create_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_delete_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_get_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_get_tasks.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_modify_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_move_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_resume_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_start_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tasks/test_stop_task.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_alerts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_audits.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_credentials.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_filters.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_groups.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_hosts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_notes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_operating_systems.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_overrides.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_permissions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_policies.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_port_lists.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_report_formats.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_results.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_roles.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_schedules.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_secinfo.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_secinfo.py.rej +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_tags.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_targets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_tasks.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_tickets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_tls_certificates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/test_vulnerabilities.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/test_clone_ticket.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/test_create_ticket.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/test_delete_ticket.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/test_get_ticket.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/test_get_tickets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tickets/test_modify_ticket.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/test_clone_tls_certificate.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/test_create_tls_certificate.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/test_delete_tls_certificate.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/test_get_tls_certificate.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/test_get_tls_certificates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/tls_certificates/test_modify_tls_certificate.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/test_clone_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/test_create_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/test_delete_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/test_get_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/test_get_users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/users/test_modify_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/vulnerabilities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/vulnerabilities/test_get_vulnerabilities.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/entities/vulnerabilities/test_get_vulnerability.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_alert_condition.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_alert_event.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_alert_method.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_alive_test.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_credential_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_credential_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_entity_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_feed_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_filter_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_help_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_hosts_ordering.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_info_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_permission_subject_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_port_range_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_report_format_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_scanner_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_severity_level.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_sort_order.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_ticket_status.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/enums/test_user_auth_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/aggregates/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/aggregates/test_get_aggregates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/authentication/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/authentication/test_authenticate.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/authentication/test_describe_auth.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/authentication/test_modify_auth.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/feed/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/feed/test_get_feed.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/feed/test_get_feeds.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/help/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/help/test_help.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/system_reports/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/system_reports/test_get_system_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_aggregates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_authentication.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_feed.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_help.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_system_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_trashcan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_user_settings.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/test_versions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/trashcan/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/trashcan/test_empty_trashcan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/trashcan/test_restore_from_trashcan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/user_settings/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/user_settings/test_get_user_setting.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/user_settings/test_get_user_settings.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/user_settings/test_modify_user_setting.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/versions/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/system/versions/test_get_version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/test_gmp_types.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv208/test_with_statement.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/notes/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/notes/test_create_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/notes/test_modify_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/overrides/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/overrides/test_create_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/scanners/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/targets/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/targets/test_create_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/targets/test_modify_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_alerts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_audits.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_credentials.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_filters.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_groups.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_hosts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_notes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_operating_systems.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_overrides.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_permissions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_policies.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_port_lists.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_report_formats.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_results.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_roles.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_schedules.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_secinfo.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_tags.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_targets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_tasks.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_tickets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_tls_certificates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/test_vulnerabilities.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/users/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/entities/users/test_modify_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_alert_condition.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_alert_event.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_alert_method.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_alive_test.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_credential_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_credential_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_entity_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_feed_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_filter_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_help_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_hosts_ordering.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_info_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_permission_subject_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_port_range_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_report_format_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_scanner_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_severity_level.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_sort_order.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_ticket_status.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/enums/test_user_auth_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_aggregates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_authentication.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_feed.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_help.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_system_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_trashcan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_user_settings.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/test_versions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/versions/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/test_gmp_types.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv214/test_with_statement.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/notes/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/notes/test_create_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/notes/test_modify_note.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/overrides/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/overrides/test_create_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/overrides/test_modify_override.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_clone_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_create_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_delete_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_config_preferences.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_get_scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_import_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_comment.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_family_selection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_name.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_nvt_selection.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scan_configs/test_modify_scan_config_set_scanner_preference.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scanners/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scanners/test_create_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/scanners/test_modify_scanner.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/targets/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/targets/test_create_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/targets/test_modify_target.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_alerts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_audits.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_credentials.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_filters.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_groups.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_hosts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_notes.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_operating_systems.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_overrides.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_permissions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_policies.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_port_lists.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_report_formats.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_results.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_roles.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_scan_configs.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_scanners.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_schedules.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_secinfo.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_tags.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_targets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_tasks.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_tickets.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_tls_certificates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_users.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/test_vulnerabilities.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/users/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/users/test_create_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/entities/users/test_modify_user.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_aggregate_statistic.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_alert_condition.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_alert_event.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_alert_method.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_alive_test.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_credential_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_credential_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_entity_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_feed_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_filter_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_help_format.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_hosts_ordering.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_info_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_permission_subject_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_port_range_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_report_format_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_scanner_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_severity_level.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_snmp_algorithms.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_sort_order.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_ticket_status.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/enums/test_user_auth_type.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_aggregates.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_authentication.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_feed.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_help.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_system_reports.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_trashcan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_user_settings.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/test_versions.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/versions/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/system/versions/test_get_protocol_version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/test_gmp_types.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/gmpv224/test_with_statement.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_delete_scan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_get_scanner_details.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_get_scans.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_get_version.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_get_vts.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_help.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_start_scan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/protocols/osp/test_osp_stop_scan.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/test_errors.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/transforms/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/transforms/test_check_command_transform.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/transforms/test_etree_check_command_transform.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/transforms/test_etree_transform.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_add_filter.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_check_command_status.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_check_port.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_deprecation.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_is_list_like.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_to_base64.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_to_bool.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/utils/test_to_comma_list.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/xml/__init__.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/xml/test.file +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/xml/test_pretty_print.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/xml/test_valid_xml_string.py +0 -0
- {python_gvm-23.11.0 → python_gvm-23.12.0}/tests/xml/test_xml_command.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-gvm
|
|
3
|
-
Version: 23.
|
|
3
|
+
Version: 23.12.0
|
|
4
4
|
Summary: Library to communicate with remote servers over GMP or OSP
|
|
5
5
|
Home-page: https://github.com/greenbone/python-gvm/
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -32,7 +32,7 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
[](https://github.com/greenbone/python-gvm/releases)
|
|
33
33
|
[](https://pypi.org/project/python-gvm/)
|
|
34
34
|
[](https://codecov.io/gh/greenbone/python-gvm)
|
|
35
|
-
[](https://github.com/greenbone/python-gvm/actions/workflows/ci.yml)
|
|
36
36
|
|
|
37
37
|
The Greenbone Vulnerability Management Python API library (**python-gvm**) is a
|
|
38
38
|
collection of APIs that help with remote controlling Greenbone Community Edition
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://github.com/greenbone/python-gvm/releases)
|
|
6
6
|
[](https://pypi.org/project/python-gvm/)
|
|
7
7
|
[](https://codecov.io/gh/greenbone/python-gvm)
|
|
8
|
-
[](https://github.com/greenbone/python-gvm/actions/workflows/ci.yml)
|
|
9
9
|
|
|
10
10
|
The Greenbone Vulnerability Management Python API library (**python-gvm**) is a
|
|
11
11
|
collection of APIs that help with remote controlling Greenbone Community Edition
|
|
@@ -19,7 +19,8 @@
|
|
|
19
19
|
Package for supported Greenbone Protocol versions.
|
|
20
20
|
|
|
21
21
|
Currently `GMP version 20.08`_, `GMP version 21.04`_
|
|
22
|
-
`GMP version 22.04
|
|
22
|
+
`GMP version 22.04`, `GMP version 22.05`
|
|
23
|
+
and `OSP version 1`_ are supported.
|
|
23
24
|
|
|
24
25
|
.. _GMP version 20.08:
|
|
25
26
|
https://docs.greenbone.net/API/GMP/gmp-20.08.html
|
|
@@ -27,6 +28,8 @@ Currently `GMP version 20.08`_, `GMP version 21.04`_
|
|
|
27
28
|
https://docs.greenbone.net/API/GMP/gmp-21.04.html
|
|
28
29
|
.. _GMP version 22.04:
|
|
29
30
|
https://docs.greenbone.net/API/GMP/gmp-22.04.html
|
|
31
|
+
.. _GMP version 22.05:
|
|
32
|
+
https://docs.greenbone.net/API/GMP/gmp-22.05.html
|
|
30
33
|
.. _OSP version 1:
|
|
31
34
|
https://docs.greenbone.net/API/OSP/osp-1.2.html
|
|
32
35
|
"""
|
|
@@ -27,11 +27,12 @@ from gvm.protocols.base import GvmConnection, GvmProtocol
|
|
|
27
27
|
from gvm.protocols.gmpv208 import Gmp as Gmpv208
|
|
28
28
|
from gvm.protocols.gmpv214 import Gmp as Gmpv214
|
|
29
29
|
from gvm.protocols.gmpv224 import Gmp as Gmpv224
|
|
30
|
+
from gvm.protocols.gmpv225 import Gmp as Gmpv225
|
|
30
31
|
from gvm.transforms import EtreeCheckCommandTransform
|
|
31
32
|
from gvm.xml import XmlCommand
|
|
32
33
|
|
|
33
34
|
SUPPORTED_GMP_VERSIONS = Union[ # pylint: disable=invalid-name
|
|
34
|
-
Gmpv208, Gmpv214, Gmpv224
|
|
35
|
+
Gmpv208, Gmpv214, Gmpv224, Gmpv225
|
|
35
36
|
]
|
|
36
37
|
|
|
37
38
|
|
|
@@ -104,6 +105,8 @@ class Gmp(GvmProtocol):
|
|
|
104
105
|
gmp_class = Gmpv214
|
|
105
106
|
elif major_version == 22 and minor_version == 4:
|
|
106
107
|
gmp_class = Gmpv224
|
|
108
|
+
elif major_version == 22 and minor_version == 5:
|
|
109
|
+
gmp_class = Gmpv225
|
|
107
110
|
else:
|
|
108
111
|
raise GvmError(
|
|
109
112
|
"Remote manager daemon uses an unsupported version of GMP. "
|
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
18
|
+
|
|
19
|
+
# pylint: disable=too-many-lines,redefined-builtin
|
|
20
|
+
|
|
21
|
+
"""
|
|
22
|
+
Module for communication with gvmd in
|
|
23
|
+
`Greenbone Management Protocol version 22.05`_
|
|
24
|
+
|
|
25
|
+
.. _Greenbone Management Protocol version 22.05:
|
|
26
|
+
https://docs.greenbone.net/API/GMP/gmp-22.05.html
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
import logging
|
|
30
|
+
from typing import Any, Callable, Optional
|
|
31
|
+
|
|
32
|
+
from gvm.connections import GvmConnection
|
|
33
|
+
from gvm.protocols.base import GvmProtocol
|
|
34
|
+
from gvm.protocols.gmpv208.entities.alerts import (
|
|
35
|
+
AlertCondition,
|
|
36
|
+
AlertEvent,
|
|
37
|
+
AlertMethod,
|
|
38
|
+
AlertsMixin,
|
|
39
|
+
)
|
|
40
|
+
from gvm.protocols.gmpv208.entities.audits import AuditsMixin
|
|
41
|
+
from gvm.protocols.gmpv208.entities.credentials import (
|
|
42
|
+
CredentialFormat,
|
|
43
|
+
CredentialsMixin,
|
|
44
|
+
CredentialType,
|
|
45
|
+
SnmpAuthAlgorithm,
|
|
46
|
+
SnmpPrivacyAlgorithm,
|
|
47
|
+
)
|
|
48
|
+
from gvm.protocols.gmpv208.entities.entities import EntityType
|
|
49
|
+
from gvm.protocols.gmpv208.entities.filter import FiltersMixin, FilterType
|
|
50
|
+
from gvm.protocols.gmpv208.entities.groups import GroupsMixin
|
|
51
|
+
from gvm.protocols.gmpv208.entities.hosts import HostsMixin, HostsOrdering
|
|
52
|
+
from gvm.protocols.gmpv208.entities.operating_systems import (
|
|
53
|
+
OperatingSystemsMixin,
|
|
54
|
+
)
|
|
55
|
+
from gvm.protocols.gmpv208.entities.permissions import (
|
|
56
|
+
PermissionsMixin,
|
|
57
|
+
PermissionSubjectType,
|
|
58
|
+
)
|
|
59
|
+
from gvm.protocols.gmpv208.entities.policies import PoliciesMixin
|
|
60
|
+
from gvm.protocols.gmpv208.entities.port_lists import (
|
|
61
|
+
PortListMixin,
|
|
62
|
+
PortRangeType,
|
|
63
|
+
)
|
|
64
|
+
from gvm.protocols.gmpv208.entities.report_formats import (
|
|
65
|
+
ReportFormatsMixin,
|
|
66
|
+
ReportFormatType,
|
|
67
|
+
)
|
|
68
|
+
from gvm.protocols.gmpv208.entities.reports import ReportsMixin
|
|
69
|
+
from gvm.protocols.gmpv208.entities.results import ResultsMixin
|
|
70
|
+
from gvm.protocols.gmpv208.entities.roles import RolesMixin
|
|
71
|
+
from gvm.protocols.gmpv208.entities.schedules import SchedulesMixin
|
|
72
|
+
from gvm.protocols.gmpv208.entities.secinfo import InfoType, SecInfoMixin
|
|
73
|
+
from gvm.protocols.gmpv208.entities.severity import SeverityLevel
|
|
74
|
+
from gvm.protocols.gmpv208.entities.tags import TagsMixin
|
|
75
|
+
from gvm.protocols.gmpv208.entities.tasks import TasksMixin
|
|
76
|
+
from gvm.protocols.gmpv208.entities.tickets import TicketsMixin, TicketStatus
|
|
77
|
+
from gvm.protocols.gmpv208.entities.tls_certificates import TLSCertificateMixin
|
|
78
|
+
from gvm.protocols.gmpv208.entities.users import UserAuthType
|
|
79
|
+
from gvm.protocols.gmpv208.entities.vulnerabilities import VulnerabilitiesMixin
|
|
80
|
+
from gvm.protocols.gmpv208.system.aggregates import (
|
|
81
|
+
AggregatesMixin,
|
|
82
|
+
AggregateStatistic,
|
|
83
|
+
SortOrder,
|
|
84
|
+
)
|
|
85
|
+
from gvm.protocols.gmpv208.system.authentication import AuthenticationMixin
|
|
86
|
+
from gvm.protocols.gmpv208.system.feed import FeedMixin, FeedType
|
|
87
|
+
from gvm.protocols.gmpv208.system.help import HelpFormat, HelpMixin
|
|
88
|
+
from gvm.protocols.gmpv208.system.system_reports import SystemReportsMixin
|
|
89
|
+
from gvm.protocols.gmpv208.system.trashcan import TrashcanMixin
|
|
90
|
+
from gvm.protocols.gmpv208.system.user_settings import UserSettingsMixin
|
|
91
|
+
|
|
92
|
+
# NEW IN 214
|
|
93
|
+
from gvm.protocols.gmpv214.entities.notes import NotesMixin
|
|
94
|
+
from gvm.protocols.gmpv214.entities.overrides import OverridesMixin
|
|
95
|
+
from gvm.protocols.gmpv214.entities.targets import AliveTest, TargetsMixin
|
|
96
|
+
from gvm.protocols.gmpv224.entities.scan_configs import ScanConfigsMixin
|
|
97
|
+
from gvm.protocols.gmpv224.entities.scanners import ScannersMixin, ScannerType
|
|
98
|
+
|
|
99
|
+
# NEW IN 224
|
|
100
|
+
from gvm.protocols.gmpv224.entities.users import UsersMixin
|
|
101
|
+
|
|
102
|
+
# NEW IN 225
|
|
103
|
+
from gvm.protocols.gmpv225.entities.resourcenames import (
|
|
104
|
+
ResourceNamesMixin,
|
|
105
|
+
ResourceType,
|
|
106
|
+
)
|
|
107
|
+
from gvm.protocols.gmpv225.system.version import VersionMixin
|
|
108
|
+
from gvm.utils import to_dotted_types_dict
|
|
109
|
+
|
|
110
|
+
logger = logging.getLogger(__name__)
|
|
111
|
+
|
|
112
|
+
_TYPE_FIELDS = [
|
|
113
|
+
AggregateStatistic,
|
|
114
|
+
AlertCondition,
|
|
115
|
+
AlertEvent,
|
|
116
|
+
AlertMethod,
|
|
117
|
+
AliveTest,
|
|
118
|
+
CredentialFormat,
|
|
119
|
+
CredentialType,
|
|
120
|
+
EntityType,
|
|
121
|
+
FeedType,
|
|
122
|
+
FilterType,
|
|
123
|
+
HostsOrdering,
|
|
124
|
+
InfoType,
|
|
125
|
+
HelpFormat,
|
|
126
|
+
PortRangeType,
|
|
127
|
+
PermissionSubjectType,
|
|
128
|
+
ReportFormatType,
|
|
129
|
+
ResourceType,
|
|
130
|
+
ScannerType,
|
|
131
|
+
SeverityLevel,
|
|
132
|
+
SnmpAuthAlgorithm,
|
|
133
|
+
SnmpPrivacyAlgorithm,
|
|
134
|
+
SortOrder,
|
|
135
|
+
TicketStatus,
|
|
136
|
+
UserAuthType,
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
class Gmp(
|
|
141
|
+
GvmProtocol,
|
|
142
|
+
AggregatesMixin,
|
|
143
|
+
AlertsMixin,
|
|
144
|
+
AuditsMixin,
|
|
145
|
+
AuthenticationMixin,
|
|
146
|
+
CredentialsMixin,
|
|
147
|
+
FeedMixin,
|
|
148
|
+
FiltersMixin,
|
|
149
|
+
GroupsMixin,
|
|
150
|
+
HelpMixin,
|
|
151
|
+
HostsMixin,
|
|
152
|
+
NotesMixin,
|
|
153
|
+
OperatingSystemsMixin,
|
|
154
|
+
OverridesMixin,
|
|
155
|
+
PermissionsMixin,
|
|
156
|
+
PoliciesMixin,
|
|
157
|
+
PortListMixin,
|
|
158
|
+
ReportFormatsMixin,
|
|
159
|
+
ReportsMixin,
|
|
160
|
+
ResourceNamesMixin,
|
|
161
|
+
ResultsMixin,
|
|
162
|
+
RolesMixin,
|
|
163
|
+
TagsMixin,
|
|
164
|
+
TargetsMixin,
|
|
165
|
+
TasksMixin,
|
|
166
|
+
TicketsMixin,
|
|
167
|
+
TLSCertificateMixin,
|
|
168
|
+
TrashcanMixin,
|
|
169
|
+
ScanConfigsMixin,
|
|
170
|
+
ScannersMixin,
|
|
171
|
+
SchedulesMixin,
|
|
172
|
+
SecInfoMixin,
|
|
173
|
+
SystemReportsMixin,
|
|
174
|
+
UserSettingsMixin,
|
|
175
|
+
UsersMixin,
|
|
176
|
+
VersionMixin,
|
|
177
|
+
VulnerabilitiesMixin,
|
|
178
|
+
):
|
|
179
|
+
"""Python interface for Greenbone Management Protocol
|
|
180
|
+
|
|
181
|
+
This class implements the `Greenbone Management Protocol version 22.05`_
|
|
182
|
+
|
|
183
|
+
Arguments:
|
|
184
|
+
connection: Connection to use to talk with the gvmd daemon. See
|
|
185
|
+
:mod:`gvm.connections` for possible connection types.
|
|
186
|
+
transform: Optional transform `callable`_ to convert response data.
|
|
187
|
+
After each request the callable gets passed the plain response data
|
|
188
|
+
which can be used to check the data and/or conversion into different
|
|
189
|
+
representations like a xml dom.
|
|
190
|
+
|
|
191
|
+
See :mod:`gvm.transforms` for existing transforms.
|
|
192
|
+
|
|
193
|
+
.. _Greenbone Management Protocol version 22.05:
|
|
194
|
+
https://docs.greenbone.net/API/GMP/gmp-22.05.html
|
|
195
|
+
.. _callable:
|
|
196
|
+
https://docs.python.org/3/library/functions.html#callable
|
|
197
|
+
"""
|
|
198
|
+
|
|
199
|
+
def __init__(
|
|
200
|
+
self,
|
|
201
|
+
connection: GvmConnection,
|
|
202
|
+
*,
|
|
203
|
+
transform: Optional[Callable[[str], Any]] = None,
|
|
204
|
+
):
|
|
205
|
+
self.types = to_dotted_types_dict(_TYPE_FIELDS)
|
|
206
|
+
|
|
207
|
+
super().__init__(connection, transform=transform)
|
|
208
|
+
|
|
209
|
+
# Is authenticated on gvmd
|
|
210
|
+
self._authenticated = False
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
from enum import Enum
|
|
21
|
+
from typing import Any, Optional
|
|
22
|
+
|
|
23
|
+
from gvm.errors import InvalidArgument, InvalidArgumentType, RequiredArgument
|
|
24
|
+
from gvm.utils import add_filter
|
|
25
|
+
from gvm.xml import XmlCommand
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class ResourceType(Enum):
|
|
29
|
+
"""Enum for resource types"""
|
|
30
|
+
|
|
31
|
+
ALERT = "ALERT"
|
|
32
|
+
CERT_BUND_ADV = "CERT_BUND_ADV"
|
|
33
|
+
CONFIG = "CONFIG"
|
|
34
|
+
CPE = "CPE"
|
|
35
|
+
CREDENTIAL = "CREDENTIAL"
|
|
36
|
+
CVE = "CVE"
|
|
37
|
+
DFN_CERT_ADV = "DFN_CERT_ADV"
|
|
38
|
+
FILTER = "FILTER"
|
|
39
|
+
GROUP = "GROUP"
|
|
40
|
+
HOST = "HOST"
|
|
41
|
+
NOTE = "NOTE"
|
|
42
|
+
NVT = "NVT"
|
|
43
|
+
OS = "OS"
|
|
44
|
+
OVERRIDE = "OVERRIDE"
|
|
45
|
+
PERMISSION = "PERMISSION"
|
|
46
|
+
PORT_LIST = "PORT_LIST"
|
|
47
|
+
REPORT_FORMAT = "REPORT_FORMAT"
|
|
48
|
+
REPORT = "REPORT"
|
|
49
|
+
RESULT = "RESULT"
|
|
50
|
+
ROLE = "ROLE"
|
|
51
|
+
SCANNER = "SCANNER"
|
|
52
|
+
SCHEDULE = "SCHEDULE"
|
|
53
|
+
TARGET = "TARGET"
|
|
54
|
+
TASK = "TASK"
|
|
55
|
+
TLS_CERTIFICATE = "TLS_CERTIFICATE"
|
|
56
|
+
USER = "USER"
|
|
57
|
+
|
|
58
|
+
@classmethod
|
|
59
|
+
def from_string(
|
|
60
|
+
cls,
|
|
61
|
+
resource_type: Optional[str],
|
|
62
|
+
) -> Optional["ResourceType"]:
|
|
63
|
+
"""Convert a resource type string to an actual ResourceType instance
|
|
64
|
+
|
|
65
|
+
Arguments:
|
|
66
|
+
resource_type: Resource type string to convert to a ResourceType
|
|
67
|
+
"""
|
|
68
|
+
if not resource_type:
|
|
69
|
+
return None
|
|
70
|
+
try:
|
|
71
|
+
return cls[resource_type.upper()]
|
|
72
|
+
except KeyError:
|
|
73
|
+
raise InvalidArgument(
|
|
74
|
+
argument="resource_type", function=cls.from_string.__name__
|
|
75
|
+
) from None
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
class ResourceNamesMixin:
|
|
79
|
+
def get_resource_names_list(
|
|
80
|
+
self,
|
|
81
|
+
resource_type: ResourceType,
|
|
82
|
+
filter_string: Optional[str] = None,
|
|
83
|
+
) -> Any:
|
|
84
|
+
"""Request a list of resource names and IDs
|
|
85
|
+
|
|
86
|
+
Arguments:
|
|
87
|
+
resource_type: Type must be either ALERT, CERT_BUND_ADV,
|
|
88
|
+
CONFIG, CPE, CREDENTIAL, CVE, DFN_CERT_ADV, FILTER,
|
|
89
|
+
GROUP, HOST, NOTE, NVT, OS, OVERRIDE, PERMISSION,
|
|
90
|
+
PORT_LIST, REPORT_FORMAT, REPORT, RESULT, ROLE,
|
|
91
|
+
SCANNER, SCHEDULE, TARGET, TASK, TLS_CERTIFICATE
|
|
92
|
+
or USER
|
|
93
|
+
filter_string: Filter term to use for the query
|
|
94
|
+
|
|
95
|
+
Returns:
|
|
96
|
+
The response. See :py:meth:`send_command` for details.
|
|
97
|
+
"""
|
|
98
|
+
if not resource_type:
|
|
99
|
+
raise RequiredArgument(
|
|
100
|
+
function=self.get_resource_names_list.__name__,
|
|
101
|
+
argument="resource_type",
|
|
102
|
+
)
|
|
103
|
+
|
|
104
|
+
if not isinstance(resource_type, ResourceType):
|
|
105
|
+
raise InvalidArgumentType(
|
|
106
|
+
function=self.get_resource_names_list.__name__,
|
|
107
|
+
argument="resource_type",
|
|
108
|
+
arg_type=ResourceType.__name__,
|
|
109
|
+
)
|
|
110
|
+
|
|
111
|
+
cmd = XmlCommand("get_resource_names")
|
|
112
|
+
|
|
113
|
+
cmd.set_attribute("type", resource_type.value)
|
|
114
|
+
|
|
115
|
+
add_filter(cmd, filter_string, None)
|
|
116
|
+
|
|
117
|
+
return self._send_xml_command(cmd)
|
|
118
|
+
|
|
119
|
+
def get_resource_name(
|
|
120
|
+
self, resource_id: str, resource_type: ResourceType
|
|
121
|
+
) -> Any:
|
|
122
|
+
"""Request a single resource name
|
|
123
|
+
|
|
124
|
+
Arguments:
|
|
125
|
+
resource_id: ID of an existing resource
|
|
126
|
+
resource_type: Type must be either ALERT, CERT_BUND_ADV,
|
|
127
|
+
CONFIG, CPE, CREDENTIAL, CVE, DFN_CERT_ADV, FILTER,
|
|
128
|
+
GROUP, HOST, NOTE, NVT, OS, OVERRIDE, PERMISSION,
|
|
129
|
+
PORT_LIST, REPORT_FORMAT, REPORT, RESULT, ROLE,
|
|
130
|
+
SCANNER, SCHEDULE, TARGET, TASK, TLS_CERTIFICATE
|
|
131
|
+
or USER
|
|
132
|
+
|
|
133
|
+
Returns:
|
|
134
|
+
The response. See :py:meth:`send_command` for details.
|
|
135
|
+
"""
|
|
136
|
+
if not resource_type:
|
|
137
|
+
raise RequiredArgument(
|
|
138
|
+
function=self.get_resource_name.__name__,
|
|
139
|
+
argument="resource_type",
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
if not isinstance(resource_type, ResourceType):
|
|
143
|
+
raise InvalidArgumentType(
|
|
144
|
+
function=self.get_resource_name.__name__,
|
|
145
|
+
argument="resource_type",
|
|
146
|
+
arg_type=ResourceType.__name__,
|
|
147
|
+
)
|
|
148
|
+
|
|
149
|
+
if not resource_id:
|
|
150
|
+
raise RequiredArgument(
|
|
151
|
+
function=self.get_resource_name.__name__, argument="resource_id"
|
|
152
|
+
)
|
|
153
|
+
|
|
154
|
+
cmd = XmlCommand("get_resource_names")
|
|
155
|
+
cmd.set_attribute("resource_id", resource_id)
|
|
156
|
+
|
|
157
|
+
cmd.set_attribute("type", resource_type.value)
|
|
158
|
+
|
|
159
|
+
return self._send_xml_command(cmd)
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
from gvm.protocols.gmpv208.system.version import (
|
|
21
|
+
VersionMixin as Gmp208VersionMixin,
|
|
22
|
+
)
|
|
23
|
+
|
|
24
|
+
PROTOCOL_VERSION = (22, 5)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
class VersionMixin(Gmp208VersionMixin):
|
|
28
|
+
@staticmethod
|
|
29
|
+
def get_protocol_version() -> tuple:
|
|
30
|
+
"""Determine the Greenbone Management Protocol (gmp) version used
|
|
31
|
+
by python-gvm version.
|
|
32
|
+
|
|
33
|
+
Returns:
|
|
34
|
+
tuple: Implemented version of the Greenbone Management Protocol
|
|
35
|
+
"""
|
|
36
|
+
return PROTOCOL_VERSION
|
|
@@ -34,7 +34,7 @@ Exports:
|
|
|
34
34
|
https://docs.greenbone.net/API/GMP/gmp.html
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
|
-
from .
|
|
37
|
+
from .gmpv225 import (
|
|
38
38
|
AggregateStatistic,
|
|
39
39
|
AlertCondition,
|
|
40
40
|
AlertEvent,
|
|
@@ -52,6 +52,7 @@ from .gmpv224 import (
|
|
|
52
52
|
PermissionSubjectType,
|
|
53
53
|
PortRangeType,
|
|
54
54
|
ReportFormatType,
|
|
55
|
+
ResourceType,
|
|
55
56
|
ScannerType,
|
|
56
57
|
SeverityLevel,
|
|
57
58
|
SnmpAuthAlgorithm,
|
|
@@ -81,6 +82,7 @@ __all__ = [
|
|
|
81
82
|
"PermissionSubjectType",
|
|
82
83
|
"PortRangeType",
|
|
83
84
|
"ReportFormatType",
|
|
85
|
+
"ResourceType",
|
|
84
86
|
"ScannerType",
|
|
85
87
|
"SeverityLevel",
|
|
86
88
|
"SnmpAuthAlgorithm",
|
|
@@ -27,14 +27,14 @@ For details about the possible supported protocol versions please take a look at
|
|
|
27
27
|
:py:mod:`gvm.protocols`.
|
|
28
28
|
|
|
29
29
|
Exports:
|
|
30
|
-
- :py:class:`gvm.protocols.
|
|
30
|
+
- :py:class:`gvm.protocols.gmpv225.Gmp`
|
|
31
31
|
- :py:class:`gvm.protocols.ospv1.Osp`
|
|
32
32
|
|
|
33
33
|
.. _Greenbone Management Protocol:
|
|
34
34
|
https://docs.greenbone.net/API/GMP/gmp.html
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
|
-
from .
|
|
37
|
+
from .gmpv225 import (
|
|
38
38
|
AggregateStatistic,
|
|
39
39
|
AlertCondition,
|
|
40
40
|
AlertEvent,
|
|
@@ -52,6 +52,7 @@ from .gmpv224 import (
|
|
|
52
52
|
PermissionSubjectType,
|
|
53
53
|
PortRangeType,
|
|
54
54
|
ReportFormatType,
|
|
55
|
+
ResourceType,
|
|
55
56
|
ScannerType,
|
|
56
57
|
SeverityLevel,
|
|
57
58
|
SnmpAuthAlgorithm,
|
|
@@ -81,6 +82,7 @@ __all__ = [
|
|
|
81
82
|
"PermissionSubjectType",
|
|
82
83
|
"PortRangeType",
|
|
83
84
|
"ReportFormatType",
|
|
85
|
+
"ResourceType",
|
|
84
86
|
"ScannerType",
|
|
85
87
|
"SeverityLevel",
|
|
86
88
|
"SnmpAuthAlgorithm",
|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "python-gvm"
|
|
7
|
-
version = "23.
|
|
7
|
+
version = "23.12.0"
|
|
8
8
|
description = "Library to communicate with remote servers over GMP or OSP"
|
|
9
9
|
license = "GPL-3.0-or-later"
|
|
10
10
|
authors = ["Greenbone AG <info@greenbone.net>"]
|
|
@@ -23,6 +23,8 @@ from gvm.errors import GvmError
|
|
|
23
23
|
from gvm.protocols.gmp import Gmp
|
|
24
24
|
from gvm.protocols.gmpv208 import Gmp as Gmpv208
|
|
25
25
|
from gvm.protocols.gmpv214 import Gmp as Gmpv214
|
|
26
|
+
from gvm.protocols.gmpv224 import Gmp as Gmpv224
|
|
27
|
+
from gvm.protocols.gmpv225 import Gmp as Gmpv225
|
|
26
28
|
from tests.protocols import GmpTestCase
|
|
27
29
|
|
|
28
30
|
|
|
@@ -84,6 +86,28 @@ class GmpContextManagerTestCase(GmpTestCase):
|
|
|
84
86
|
self.assertEqual(gmp.get_protocol_version(), (21, 4))
|
|
85
87
|
self.assertIsInstance(gmp, Gmpv214)
|
|
86
88
|
|
|
89
|
+
def test_select_gmpv224(self):
|
|
90
|
+
self.connection.read.return_value(
|
|
91
|
+
'<get_version_response status="200" status_text="OK">'
|
|
92
|
+
"<version>22.04</version>"
|
|
93
|
+
"</get_version_response>"
|
|
94
|
+
)
|
|
95
|
+
|
|
96
|
+
with self.gmp as gmp:
|
|
97
|
+
self.assertEqual(gmp.get_protocol_version(), (22, 4))
|
|
98
|
+
self.assertIsInstance(gmp, Gmpv224)
|
|
99
|
+
|
|
100
|
+
def test_select_gmpv225(self):
|
|
101
|
+
self.connection.read.return_value(
|
|
102
|
+
'<get_version_response status="200" status_text="OK">'
|
|
103
|
+
"<version>22.05</version>"
|
|
104
|
+
"</get_version_response>"
|
|
105
|
+
)
|
|
106
|
+
|
|
107
|
+
with self.gmp as gmp:
|
|
108
|
+
self.assertEqual(gmp.get_protocol_version(), (22, 5))
|
|
109
|
+
self.assertIsInstance(gmp, Gmpv225)
|
|
110
|
+
|
|
87
111
|
def test_unknown_protocol(self):
|
|
88
112
|
self.connection.read.return_value(
|
|
89
113
|
'<get_version_response status="200" status_text="OK">'
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
from gvm.protocols.gmpv225 import Gmp
|
|
21
|
+
|
|
22
|
+
from .. import GmpTestCase
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
class Gmpv225TestCase(GmpTestCase):
|
|
26
|
+
gmp_class = Gmp
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright (C) 2023 Greenbone AG
|
|
3
|
+
#
|
|
4
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
5
|
+
#
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU General Public License as published by
|
|
8
|
+
# the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
#
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU General Public License for more details.
|
|
15
|
+
#
|
|
16
|
+
# You should have received a copy of the GNU General Public License
|
|
17
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|