-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding GMPv9 functionality to python-gvm #157
Merged
Merged
Changes from 36 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
4c597f6
Added functionality for gmpv9.
y0urself 3504e4b
Init test files
y0urself 63d17d3
removed some import issues
y0urself 417eaef
Ordering matters.
y0urself 1a3e933
More import issues fixed
y0urself 6c877ca
First Test Script passed
y0urself 194422b
create_audit tests passed
y0urself b5ffc25
Tests for Create Config and Policy
y0urself f5f5529
Added some missing defaults, missing optional arguments, ...
y0urself 9d35348
Added tests for create_tls_certificate
y0urself 186c854
Reordered arguments comments
y0urself ad63037
Fixes in test_create_tls_certificate.py, added tests for modify_tls_c…
y0urself 48c1040
used set_attribute instead of add_element for include_certificate_data
y0urself d1899d5
Added tests for get_tls_certificates
y0urself 6a63569
Minor refactoring, removed import
y0urself 282f537
linting
y0urself d0db493
suppressing protected-access
y0urself ab455f6
running black again
y0urself e1d03ec
whitespace cancer ...
y0urself c82f777
removed duplicated code
y0urself 2bfd970
corrected comments
y0urself 44d6d0d
changed import
y0urself bb4cff5
formatting ...
y0urself d4ab8ff
Corrected naming of variables and comments.
y0urself 1628db8
Deleted bandit file again
y0urself ebe7f92
Updated tests
y0urself 5bc98bf
Added Filter, Tag support for TLS Certificate, Audit, Policy ...
y0urself 2e40e3b
Wildcard imports are deprecated ...
y0urself 927b8e0
Added Tests for EntityType and FilterType
y0urself 54f1dc2
Reformatting
y0urself ca4c255
Renamed ENUM-Type to
y0urself aa63111
Introduced clone_tls_certificate method to copy existing certificates…
y0urself 5a78ee5
Formatting
y0urself ca45d94
Removed the types POLICY and AUDIT from EntityType and FilterType
y0urself e8606a5
Updated CHANGELOG.md
y0urself 7ce2363
formatting :/
y0urself 99c6091
Edited CHANGELOG.md
y0urself 05575b2
Merge branch 'master' into master
bjoernricks File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -7,8 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
## [unreleased] | ||||
|
||||
### Added | ||||
* Introducing Gmpv9 [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
* Added new `create_audit` method, to create a task with the `usage_type` `audit` [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
* Added new `create_policy` method, to create a config with the `usage_type` `policy` [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
* Added the new methods `create_tls_certificate`, `modify_tls_certificate` and `clone_tls_certificate` to create, modify and copy TLS certificates [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
* Added the new method `get_tls_certificates`, to request TLS certificates from the server [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
|
||||
### Changed | ||||
* Added `usage_type` `scan` to `create_task` method [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
* Added `usage_type` `scan` to `create_config` method [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
* Added type `TLS_CERTIFICATE` to `EntityType` and `FilterType` [PR 157](https://github.com/greenbone/python-gvm/pull/157) | ||||
|
||||
### Fixed | ||||
|
||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.