Skip to content

Releases: greenbone/python-gvm

python-gvm 22.6.0

09 Jun 05:55
Compare
Choose a tag to compare

22.6.0 - 2022-06-09

Bug Fixes

python-gvm 22.5.0

19 May 15:41
Compare
Choose a tag to compare

22.5.0 - 2022-05-19

Removed

  • Don't mention ALLINFO in the get_info_list method dc288185
  • Deprecate ifaces and icafes allow_parameters in user commands a3085ad3

Changed

Bug Fixes

  • Unwrap SSL socket before closing transport socket. (#737) a1fc99e5
  • Ensure that connection is closed when using context manager 46b0e4a3

python-gvm 21.11.0

30 Nov 09:40
Compare
Choose a tag to compare

21.11.0 - 2021-11-30

Added

Bug Fixes

  • The types dict could not be accessed via dotted notation previously, this fix should make it possible. 0111cd9

python-gvm 21.10.0

12 Oct 06:24
Compare
Choose a tag to compare

21.10.0 - 2021-10-12

Added

  • Adding the types attribute back to the Gmp classes [#568] d04aea4

Changed

  • Removing all get_entity_type_from_string() methods and replace them by EntityType.from_string() classmethods [#573] b6dec3d

python-gvm 21.6.0

21 Jun 09:36
Compare
Choose a tag to compare

21.6.0 - 2021-06-21

Changed

  • Changed API calls for SecInfo #501:
    • get_nvt_list() -> get_nvts()
    • get_cpe_list() -> get_cpes()
    • get_cve_list() -> get_cves()
    • get_cert_bund_advisory_list() -> get_cert_bund_advisories()
    • get_dnf_cert_advisory_list() -> get_dnf_cert_advisories()
    • get_oval_definition_list() -> get_oval_definitions()

Removed

  • Removed debug print statement in check_command_status() #506

python-gvm 21.5.2

01 Jun 09:03
v21.5.2
9f17fe9
Compare
Choose a tag to compare

21.5.2 - 2021-06-01

Added

Add import_policy API call #496

python-gvm 21.5.1

01 Jun 07:50
v21.5.1
3c7540c
Compare
Choose a tag to compare

21.5.1 - 2021-06-01

Changed

  • For SSH Connections: Reject unknown hosts, ask user if he wants to connect to unknown remote host and ask user if he wants to add the host to known_hosts #486

Fixed

  • Export HelpFormat and get_help_format_from_string() #495

python-gvm 21.5.0

25 May 16:31
v21.5.0
224df3d
Compare
Choose a tag to compare

21.5.0 - 2021-05-25

Dropped support for GMP v7, v8 and v9!

Added

  • Introduced new explicit API calls for SecInfo: get_nvt(), get_nvt_list(), get_cpe(), get_cpe_list(), get_cve(), get_cve_list(), get_cert_bund_advisory(), get_cert_bund_advisory_list(), get_dnf_cert_advisory(), get_dnf_cert_advisory_list(), get_oval_definition(), get_oval_definition_list(). #456

Changed

  • Splitted up get_preference(s) into get_nvt_preference(s) and get_scan_config_preference(s). #473
  • Improved and changed help(): Introduced HelpFormat Enum, changed format parameter to help_format using HelpFormat, changed help_type to brief and bool, as it only has two options (default and brief). #473
  • Changed filter to filter_string in getter functions. #470 #471 #473
  • API changes: get_setting(s) -> get_user_setting(s), modify_setting -> modify_user_setting. #472
  • Changed all API calls for _config to _scan_config to match other Greenbone components. #465
  • Split up get_asset(s) into get_host(s) and get_operating_system(s). #459
  • Split up delete_asset into delete_host and delete_operating_system. #459
  • Split up modify_asset into modify_host and modify_operating_system. #459
  • Deleted AssetType. It is not required anymore. #459
  • Changed the API calls get_nvt() and get_nvts() to get_scan_config_nvt() and get_scan_config_nvts(). #456
  • Splitted up the GmpMonolith class:
    • Detached the SystemReports API calls from the GMP class into a new SystemReportsMixin. #473
    • Detached the Help API calls from the GMP class into a new HelpMixin. #473
    • Detached the Trashcan API calls from the GMP class into a new TrashcanMixin. #472
    • Detached the Authentication API calls from the GMP class into a new AuthenticationMixin. #472
    • Detached the Version API calls from the GMP class into a new VersionMixin. #472
    • Detached the Preferences API calls from the GMP class into a new PreferencesMixin. #471
    • Detached the Settings API calls from the GMP class into a new UserSettingsMixin. #471
    • Detached the Groups API calls from the GMP class into a new GroupsMixin. #471
    • Detached the Vulnerabilities API calls from the GMP class into a new VulnerabilitiesMixin. #471
    • Detached the ReportFormats API calls from the GMP class into a new ReportFormatsMixin. #470
    • Detached the Roles API calls from the GMP class into a new RolesMixin. #470
    • Detached the Tickets API calls from the GMP class into a new TicketsMixin. #470
    • Detached the HostsOrdering Type from the GMP types class. #469
    • Detached the TicketStatus Type from the GMP types class. #469
    • Detached the Schedules API calls from the GMP class into a new SchedulesMixin. #469
    • Detached the Filters API calls from the GMP class into a new FiltersMixin. #469
    • Detached the Tags API calls from the GMP class into a new TagsMixin. #468
    • Detached the Feeds API calls from the GMP class into a new FeedMixin. #468 #472
    • Detached the Aggregates API calls from the GMP class into a new AggregatesMixin. #468
    • Detached the EntityType from the GMP types class into a new entites file. #467
    • Detached the Users API calls from the GMP class into a new UsersMixin. #467
    • Detached the Permissions API calls from the GMP class into a new PermissionsMixin. #467
    • Detached the Scanner API calls from the GMP class into a new ScannersMixin. #466
    • Detached the Credential API calls from the GMP class into a new CredentialsMixin. #466
    • Detached Config and Policy calls from GMP class into new ScanConfigsMixin and PoliciesMixin. #465
    • Detached the Audit API calls from the GMP class into a new AuditsMixin. #464
    • Detached TLS-Certificates and assets into TLSCertificatesMixin, HostsMixin and OperatingSystemsMixin. #459
    • Detached the Alerts API calls from the GMP class into a new AlertsMixin. #458
    • Detached the Notes and Overrides API calls from the GMP class into a new NotesMixin and OverridesMixin. #457
    • Detached the InfoType from the GMP types class. #456
    • Detached the SecInfo (CPE, CVE, NVT, CERT-BUND, DNF-CERT, OVAL Definitions) calls from GMP class into new SecInfoMixin. #456
    • Detached the PortList and PortRange API calls from the GMP class into a new PortListMixin. #446
    • Detached the Target API calls from the GMP class into a new TargetsMixin. #446
    • Detached the AliveTest from the GMP types class. #446
    • Detached the PortListType from the GMP types class. #446
    • Detached the ReportFormatType from the GMP types class. #445
    • Detached the Report API calls from the GMP class into a new ReportMixin. #445
    • Detached the Task API calls from the GMP class into a new TasksMixin. #443
  • Moved helper functions from gmp to utils. The response XML will not be recovered by the parser anymore! #442

Removed

  • Removed sync_feed, sync_scap, and sync_cert calls. #472
  • Removed TimeUnit. It was used for schedules before iCal and is not required anymore. #469
  • Removed Gmpv214Mixin. #467
  • Remove support of delete host/operating system by a report . #459
  • Remove deprecated make_unique parameter from Targets. #446
  • Removed deprecated Agents completely. #441
  • Dropped support for GMP v7, v8 and v9! The oldest usable GMP version is 20.8
    #436
    #437
    #438
    #439
    #444

python-gvm 21.4.0

26 Apr 14:34
v21.4.0
e5dc740
Compare
Choose a tag to compare

21.4.0 - 2021-04-26

Changed

  • get_feed can also be requested with GVMD_DATA for 20.08 and newer, added GVMD_DATA to the FeedType and updated API call #434

python-gvm 21.1.3

27 Jan 15:24
v21.1.3
2f6898d
Compare
Choose a tag to compare

21.1.3 - 2021-01-27

Added

  • Added protocol version "next" and GMP 21.04 doc #384

Fixed

  • Add missing ReportFormatType to GMP 21.04 #385