Skip to content

Latest commit

 

History

History
83 lines (73 loc) · 3.33 KB

CHANGELOG.md

File metadata and controls

83 lines (73 loc) · 3.33 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Added

  • nvt threat information in host result 114

Changed

  • remove pandas due to too old debian version 112

Deprecated

Removed

Fixed

[0.0.1a3] - 2020-11-06

Added

  • XMLParser (pheme/parser/xml.py) #5
  • transformation for gvmd scan results to host grouped template data #5
curl -X POST\
    'http://localhost:8000/transform'\
     -H 'Content-Type: application/xml'\
     -H 'Accept: application/json; indent=2'\
     -d @path_to/scanreport.xml
  • report generation for pdf #24
curl 'http://localhost:8000/report/$ID_OF_PREVIOUS_POST' -H 'Accept: application/pdf'
  • report generation for html #24
curl 'http://localhost:8000/report/$ID_OF_PREVIOUS_POST' -H 'Accept: text/html'
  • rudimentary chart support #30
  • endpoint to get the xml as json #30
curl -X POST 'http://localhost:8000/unmodified'\
     -H 'Content-Type: application/xml'\
     -H 'Accept: application/json'\
     -d @path_to/scanreport.xml
  • add distribution chart possibility #33
  • create a markdown table description of scanreport model #37
curl -H 'accept: text/markdown+table' localhost:8000/scanreport/data/description
  • Report Format Editor #51
http://localhost:8000/static/report_format_editor.html
  • overridable design parameter 55
  • add possibility to not include overview information to remove charts and redundant information 63
curl 'http://localhost:8000/report/$ID_OF_PREVIOUS_POST?without_overview=TRUE' -H 'Accept: text/csv'
  • add xml response 63
curl 'http://localhost:8000/report/$ID_OF_PREVIOUS_POST' -H 'Accept: application/xml'
  • add csv response 63
curl 'http://localhost:8000/report/$ID_OF_PREVIOUS_POST' -H 'Accept: text/csv'

[0.0.1a2] - 2020-08-14

Added

  • django webserver
  • openapi (/openapi-schema/)
  • swagger (/docs/)