Skip to content
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 38 commits into from
Sep 25, 2019
Merged
Show file tree
Hide file tree
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 Sep 19, 2019
3504e4b
Init test files
y0urself Sep 19, 2019
63d17d3
removed some import issues
y0urself Sep 19, 2019
417eaef
Ordering matters.
y0urself Sep 19, 2019
1a3e933
More import issues fixed
y0urself Sep 19, 2019
6c877ca
First Test Script passed
y0urself Sep 19, 2019
194422b
create_audit tests passed
y0urself Sep 19, 2019
b5ffc25
Tests for Create Config and Policy
y0urself Sep 19, 2019
f5f5529
Added some missing defaults, missing optional arguments, ...
y0urself Sep 19, 2019
9d35348
Added tests for create_tls_certificate
y0urself Sep 19, 2019
186c854
Reordered arguments comments
y0urself Sep 19, 2019
ad63037
Fixes in test_create_tls_certificate.py, added tests for modify_tls_c…
y0urself Sep 19, 2019
48c1040
used set_attribute instead of add_element for include_certificate_data
y0urself Sep 19, 2019
d1899d5
Added tests for get_tls_certificates
y0urself Sep 19, 2019
6a63569
Minor refactoring, removed import
y0urself Sep 19, 2019
282f537
linting
y0urself Sep 19, 2019
d0db493
suppressing protected-access
y0urself Sep 19, 2019
ab455f6
running black again
y0urself Sep 19, 2019
e1d03ec
whitespace cancer ...
y0urself Sep 19, 2019
c82f777
removed duplicated code
y0urself Sep 19, 2019
2bfd970
corrected comments
y0urself Sep 20, 2019
44d6d0d
changed import
y0urself Sep 20, 2019
bb4cff5
formatting ...
y0urself Sep 20, 2019
d4ab8ff
Corrected naming of variables and comments.
y0urself Sep 24, 2019
1628db8
Deleted bandit file again
y0urself Sep 24, 2019
ebe7f92
Updated tests
y0urself Sep 24, 2019
5bc98bf
Added Filter, Tag support for TLS Certificate, Audit, Policy ...
y0urself Sep 24, 2019
2e40e3b
Wildcard imports are deprecated ...
y0urself Sep 24, 2019
927b8e0
Added Tests for EntityType and FilterType
y0urself Sep 24, 2019
54f1dc2
Reformatting
y0urself Sep 24, 2019
ca4c255
Renamed ENUM-Type to
y0urself Sep 24, 2019
aa63111
Introduced clone_tls_certificate method to copy existing certificates…
y0urself Sep 24, 2019
5a78ee5
Formatting
y0urself Sep 24, 2019
ca45d94
Removed the types POLICY and AUDIT from EntityType and FilterType
y0urself Sep 25, 2019
e8606a5
Updated CHANGELOG.md
y0urself Sep 25, 2019
7ce2363
formatting :/
y0urself Sep 25, 2019
99c6091
Edited CHANGELOG.md
y0urself Sep 25, 2019
05575b2
Merge branch 'master' into master
bjoernricks Sep 25, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* 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)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Added `usage_type` `scan` to `create_config` method [PR 157](https://github.com/greenbone/python-gvm/pull/157)

* Added type `TLS_CERTIFICATE` to `EntityType` and `FilterType` [PR 157](https://github.com/greenbone/python-gvm/pull/157)

### Fixed

Expand Down
Loading