{ "info": { "author": "TheGroundZero (@DezeStijn)", "author_email": "2406013+TheGroundZero@users.noreply.github.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Framework :: Sphinx", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "Intended Audience :: Information Technology", "Intended Audience :: Other Audience", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Topic :: Documentation :: Sphinx", "Topic :: Internet :: Log Analysis", "Topic :: Security" ], "description": "# OpenVAS Reporting: \n\n[![GitHub version](https://badge.fury.io/gh/TheGroundZero%2Fopenvasreporting.svg)](https://badge.fury.io/gh/TheGroundZero%2Fopenvasreporting)\n[![License](https://img.shields.io/github/license/TheGroundZero/openvasreporting.svg)](https://github.com/TheGroundZero/openvasreporting/blob/master/LICENSE)\n[![Docs](https://readthedocs.org/projects/openvas-reporting/badge/?version=latest&style=flat)](https://openvas-reporting.stijncrevits.be)\n[![Known Vulnerabilities](https://snyk.io/test/github/TheGroundZero/openvasreporting/badge.svg?targetFile=requirements.txt)](https://snyk.io/test/github/TheGroundZero/openvasreporting?targetFile=requirements.txt)\n[![codecov](https://codecov.io/gh/TheGroundZero/openvasreporting/branch/master/graph/badge.svg)](https://codecov.io/gh/TheGroundZero/openvasreporting)\n[![Requirements Status](https://requires.io/github/TheGroundZero/openvasreporting/requirements.svg?branch=master)](https://requires.io/github/TheGroundZero/openvasreporting/requirements/?branch=master)\n[![PyPI - Version](https://img.shields.io/pypi/v/OpenVAS-Reporting.svg)](https://pypi.org/project/OpenVAS-Reporting/)\n[![PyPI - Format](https://img.shields.io/pypi/format/OpenVAS-Reporting.svg)](https://pypi.org/project/OpenVAS-Reporting/)\n\nA tool to convert [OpenVAS](http://www.openvas.org/) XML into reports.\n\n![Report example screenshot](docs/_static/img/OpenVASreporting.png?raw=true)\n\n*Read the full documentation at [https://openvas-reporting.stijncrevits.be](https://openvas-reporting.stijncrevits.be)*\n\nI forked [OpenVAS2Report](https://github.com/cr0hn/openvas_to_report) since it didn't manage to convert all reports I threw at it\nand because I wanted to learn how to use Python for working with XML and creating Excel files. \nAlso, OpenVAS mixes their own threat levels with the [CVSS](https://www.first.org/cvss/) scoring, the latter of which I prefer to use in my reports.\n\nLooking for a fix and providing an actual fix through a pull request would have been too much work,\nso I chose to fork the repo and try my own thing. \nI reorganised some of the files, removed some functionality and added some extra, and rewrote some functions.\n\nAt this moment in time, the script only output .xlsx documents in one format, this may (not) change in the future.\n\n\n## Requirements\n\n - [Python](https://www.python.org/) version 3\n - [XlsxWriter](https://xlsxwriter.readthedocs.io/)\n - [Python-docx](https://python-docx.readthedocs.io)\n\n\n## Installation\n\n # install requirements\n apt(-get) install python3 python3-pip # Debian, Ubuntu\n yum -y install python3 python3-pip # CentOS\n dnf install python3 python3-pip # Fedora\n pip3 install -r requirements.txt\n # clone repo\n git clone git@github.com:TheGroundZero/openvas_to_report.git\n\nAlternatively, you can install the package through the Python package installer 'pip'.\n\n # Install pip\n apt(-get) install python3 python3-pip # Debian, Ubuntu\n yum -y install python3 python3-pip # CentOS\n dnf install python3 python3-pip # Fedora\n # Install the package\n pip install OpenVAS-Reporting\n\n\n## Usage\n\n # When working from the Git repo\n python3 -m openvasreporting -i [OpenVAS xml file(s)] [-o [Output file]] [-f [Output format]] [-l [minimal threat level (n, l, m, h, c)]] [-f [docx template]]\n # When using the pip package\n OpenVAS-Reporting -i [OpenVAS xml file(s)] [-o [Output file]] [-f [Output format]] [-l [minimal threat level (n, l, m, h, c)]] [-f [docx template]]\n\n### Parameters\n\n| Short param | Long param | Description | Required | Default value |\n| :---------: | :--------- | :-------------- | :------: | :----------------------------------------- |\n| -i | --input | Input file(s) | YES | n/a |\n| -o | --output | Output filename | No | openvas_report |\n| -f | --format | Output format | No | xlsx |\n| -l | --level | Minimal level | No | n |\n| -t | --template | Docx template | No | openvasreporting/src/openvas-template.docx |\n\n## Examples\n\n### Create Excel report from 1 OpenVAS XML report using default settings\n\n python3 -m openvasreporting -i openvasreport.xml -f xlsx\n\n### Create Excel report from multiple OpenVAS reports using default settings\n\n # wildcard select\n python3 -m openvasreporting -i *.xml -f xlsx\n # selective\n python3 -m openvasreporting -i openvasreport1.xml -i openvasreport2.xml -f xlsx\n\n### Create Word report from multiple OpenVAS reports, reporting only threat level high and up, use custom template\n\n python3 -m openvasreporting -i *.xml -o docxreport -f docx -l h -t \"/home/user/myOpenvasTemplate.docx\"\n\n## Result\n\nThe final report (in Excel format) will then look something like this:\n\n![Report example screenshot - Summary](docs/_static/img/screenshot-report.png?raw=true)\n![Report example screenshot - ToC](docs/_static/img/screenshot-report1.png?raw=true)\n![Report example screenshot - Vuln desc](docs/_static/img/screenshot-report2.png?raw=true)\n\nWorksheets are sorted according to CVSS score and are colored according to the vulnerability level.\n\n## Ideas\n\nSome of the ideas I still have for future functionality:\n\n - list vulnerabilities per host\n - filter by host (scope/exclude) as in OpenVAS2Report\n - select threat levels individually (e.g. none and low; but not med, high and crit)\n - import other formats (not only XML), e.g. CSV as suggested in [this issue](https://github.com/TheGroundZero/openvasreporting_server/issues/3)\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/TheGroundZero/openvasreporting", "keywords": "OpenVAS OpenVAS-reports Excel xlsxwriter xlsx reporting reports report", "license": "GPL-3.0-or-later", "maintainer": "", "maintainer_email": "", "name": "OpenVAS-Reporting", "package_url": "https://pypi.org/project/OpenVAS-Reporting/", "platform": "", "project_url": "https://pypi.org/project/OpenVAS-Reporting/", "project_urls": { "Documentation": "https://openvas-reporting.stijncrevits.be", "Homepage": "https://github.com/TheGroundZero/openvasreporting", "Issues": "https://github.com/TheGroundZero/openvasreporting/issues/", "Source Code": "https://github.com/TheGroundZero/openvasreporting" }, "release_url": "https://pypi.org/project/OpenVAS-Reporting/1.4.4/", "requires_dist": [ "matplotlib (>=2.2.2)", "python-docx (>=0.8.7)", "xlsxwriter (>=1.0.0)" ], "requires_python": "~=3.7", "summary": "A tool to convert OpenVAS XML into reports.", "version": "1.4.4" }, "last_serial": 5583425, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "c11a88bf881ed9641dd5f88c56e17fa4", "sha256": "49a6e6bbd1c5b2e41e17279d7c6f603fcda77637ad4488e0b6a48173a47e2068" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c11a88bf881ed9641dd5f88c56e17fa4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 2487, "upload_time": "2018-08-31T15:13:29", "url": "https://files.pythonhosted.org/packages/87/b1/7bb0259f45b84f563a55c5acd3ac652d58b0a73f65a4224163cb92198169/OpenVAS_Reporting-1.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b65601b8b6a7e55d8acf957dbee17649", "sha256": "08ccbd73f1f791b1eca5d997f51d1202fb5facf5581c59338b67371f75850b61" }, "downloads": -1, "filename": "OpenVAS Reporting-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b65601b8b6a7e55d8acf957dbee17649", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96902, "upload_time": "2018-09-10T14:13:43", "url": "https://files.pythonhosted.org/packages/0a/2f/b235b1e8de94d2a47718ff7c9dea1caea3341cb4d4a5818417a5d2ecf71f/OpenVAS%20Reporting-1.0.0.tar.gz" } ], "1.0.1a0": [ { "comment_text": "", "digests": { "md5": "5b4a28a3f169e4e0620bf2ad86ed21bc", "sha256": "7de67f4bee8cfd82c389970c363b70b4cfe9436a547d36189f940e089dbeb277" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.0.1a0-py3-none-any.whl", "has_sig": false, "md5_digest": "5b4a28a3f169e4e0620bf2ad86ed21bc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 4946, "upload_time": "2018-08-31T15:13:31", "url": "https://files.pythonhosted.org/packages/11/cd/5c9e72de4402192be4ba006a415d3802fafcad94a0c23ec1329d469722d4/OpenVAS_Reporting-1.0.1a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "775ebf9fa4d414773b2cd53a8747c3ec", "sha256": "d0e8df0e120cf9a561aec5ce59570884ac77976c1e10722e8adbde146169cf1d" }, "downloads": -1, "filename": "OpenVAS Reporting-1.0.1a0.tar.gz", "has_sig": false, "md5_digest": "775ebf9fa4d414773b2cd53a8747c3ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 376159, "upload_time": "2018-09-10T14:13:45", "url": "https://files.pythonhosted.org/packages/87/ce/e04bb1a470d92e4838c9c8370e89cc419827f6c4e7f415dec82d73b65899/OpenVAS%20Reporting-1.0.1a0.tar.gz" } ], "1.1.0a0": [ { "comment_text": "", "digests": { "md5": "300964747fbd6b4946cb64e5e5719cc0", "sha256": "3f03d5e0c723d889f2d2b8cd202f79ce1f1be38325f5b61230ae011b3455cd91" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.1.0a0-py3-none-any.whl", "has_sig": false, "md5_digest": "300964747fbd6b4946cb64e5e5719cc0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6127, "upload_time": "2018-08-31T15:13:32", "url": "https://files.pythonhosted.org/packages/cc/c7/7b26d7de0912951d75de99747e289769e47b74a10d30f1d273668991fff6/OpenVAS_Reporting-1.1.0a0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "47ce0c6c2a8489a2ed6eaef3dc15d408", "sha256": "5bb6c61c878987697c4c4bb7b1da21c215517f1895d8a4e48717cde2bd7df13a" }, "downloads": -1, "filename": "OpenVAS Reporting-1.1.0a0.tar.gz", "has_sig": false, "md5_digest": "47ce0c6c2a8489a2ed6eaef3dc15d408", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1519178, "upload_time": "2018-09-10T14:13:49", "url": "https://files.pythonhosted.org/packages/9f/cc/9210131950430dc76c238c1ba7ee8d6f6b6962db60e3b5144af5593f271f/OpenVAS%20Reporting-1.1.0a0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "9398e2f33916ab856ca6e23f9feae71a", "sha256": "d642083864de35e3e28507140e6b30cb58ecb8680ec232dba58e136881314bf4" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9398e2f33916ab856ca6e23f9feae71a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6109, "upload_time": "2018-09-10T14:13:42", "url": "https://files.pythonhosted.org/packages/04/bb/19ced660987c94b38e8095a24006fb878d9ef30432778dbc411815214b90/OpenVAS_Reporting-1.2.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e4c42760f9c3ff8cd65ec844d55eeae5", "sha256": "279675f15eb535f0c41d13954061238c5b546bd09471315e50ecbaea7b3193f8" }, "downloads": -1, "filename": "OpenVAS Reporting-1.2.0.tar.gz", "has_sig": false, "md5_digest": "e4c42760f9c3ff8cd65ec844d55eeae5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4567917, "upload_time": "2018-09-10T14:14:00", "url": "https://files.pythonhosted.org/packages/25/ab/38253ac6e810d6611ce48ced26569ae9c3640c8a2b0cad7afcd434395593/OpenVAS%20Reporting-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "87c7dd2728a28d8d3335cf65eb85f92c", "sha256": "286d6b57794d5317ea818e56bda9c887f8bfb293c5c23c6e3bdf628b33c05814" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "87c7dd2728a28d8d3335cf65eb85f92c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6109, "upload_time": "2018-09-13T13:44:31", "url": "https://files.pythonhosted.org/packages/20/10/42846d2f2e5a33ed9070a06eab22797c5bfc4f8e0105fd1091697f3a5eba/OpenVAS_Reporting-1.2.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2dabe6230966967502360f10c9593bea", "sha256": "f21049057b51bd87292c17a4127bf148d21a75595b67ae6b0b00e445d607b263" }, "downloads": -1, "filename": "OpenVAS Reporting-1.2.1.tar.gz", "has_sig": false, "md5_digest": "2dabe6230966967502360f10c9593bea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4567918, "upload_time": "2018-09-13T13:44:56", "url": "https://files.pythonhosted.org/packages/71/6c/b81520bd4362ee6f6e657b67cb398cce7c3ce10632c207a1ef863e158106/OpenVAS%20Reporting-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "a864c8b496c385d92b14877fd140f9d5", "sha256": "3d9a80337d86c778b3df6daa0ef0e969bc40e00b265e1ae38aed1ee23640a17f" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "a864c8b496c385d92b14877fd140f9d5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 6109, "upload_time": "2018-09-13T14:41:02", "url": "https://files.pythonhosted.org/packages/c4/4b/7a5672016204e364e834c920b94ec8584862499d95c37e2a9353b73a8abc/OpenVAS_Reporting-1.2.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7230c6d4379de73589b4d515599b4dc9", "sha256": "b75063b9a552f21ddf3f620e9ab061b0e2d1ec64be8092a3f292d0b3076a6dd6" }, "downloads": -1, "filename": "OpenVAS Reporting-1.2.2.tar.gz", "has_sig": false, "md5_digest": "7230c6d4379de73589b4d515599b4dc9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9138632, "upload_time": "2018-09-13T14:41:48", "url": "https://files.pythonhosted.org/packages/8f/2c/f840a988f4e9553cb83a29596184c5cdbda885f559fb920d53e57d5d4684/OpenVAS%20Reporting-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "e0f6be704ac99c4281cf4fdbe7d2fac2", "sha256": "7488d90c895f1bc81545c2445fae90e7e04c46bd11de0f4d4a1e04d3341372e7" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "e0f6be704ac99c4281cf4fdbe7d2fac2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 6294, "upload_time": "2018-09-20T12:49:37", "url": "https://files.pythonhosted.org/packages/85/0d/5c12191da2f5d8bf0c28901a81863dc2567e76342a4656c9c29fb39c0ffa/OpenVAS_Reporting-1.2.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "92b8100646fe7a16109395b17b4e73e9", "sha256": "856059c2d6c89b77ab3a155d6d64931746340ca3ffec65d6287b0ace3793cc4d" }, "downloads": -1, "filename": "OpenVAS Reporting-1.2.3.tar.gz", "has_sig": false, "md5_digest": "92b8100646fe7a16109395b17b4e73e9", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 18282012, "upload_time": "2018-09-20T12:49:41", "url": "https://files.pythonhosted.org/packages/dc/3f/d9b5472fc1f5b1b9e9da9fc349563e6e8f26417d92eedbfbe21beeb2ad8b/OpenVAS%20Reporting-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "639987f0657a89bc62996f6cffe1f2ec", "sha256": "6ac515c8abf2f0c3fbd885fd6ccbf2b479c4344b312de8b13e203aa19989c10d" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "639987f0657a89bc62996f6cffe1f2ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 6293, "upload_time": "2018-09-20T14:22:48", "url": "https://files.pythonhosted.org/packages/11/03/7cb748ead59804d9987564ea7b0287a2f782739a7f9afb25c06cefe9d3e9/OpenVAS_Reporting-1.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "87d1c21a6c6f27121bdc70b0350d71f1", "sha256": "d8e2980d71be890c6dd57a93705fc698cb135ba4f9c132c3830b62c7ef618d7d" }, "downloads": -1, "filename": "OpenVAS Reporting-1.3.0.tar.gz", "has_sig": false, "md5_digest": "87d1c21a6c6f27121bdc70b0350d71f1", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 36572509, "upload_time": "2018-09-20T14:22:54", "url": "https://files.pythonhosted.org/packages/fd/8c/858403f84968e27e0715cc58991b26dc2a4502dc303369520229be51274c/OpenVAS%20Reporting-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "d732638d32791b8bbf33f5d0bbb7dfa7", "sha256": "8d6621099d3418dcc7feb83d946d376744b26fa043be50552fa60ab4dffad52e" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d732638d32791b8bbf33f5d0bbb7dfa7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 6301, "upload_time": "2018-09-27T14:33:29", "url": "https://files.pythonhosted.org/packages/b1/2c/ec84160b2cd2707d33b1c65cd13f0515e18b4d222a31d81fb9b76afe3efe/OpenVAS_Reporting-1.3.1-py3-none-any.whl" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "c48fda7319913dcf82491cf1e6d0916e", "sha256": "ba909c212293e2b3f3f1eb1d6c45e04685c690d1951a8158d1d9adae8a758a49" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c48fda7319913dcf82491cf1e6d0916e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 17533, "upload_time": "2018-09-27T15:08:13", "url": "https://files.pythonhosted.org/packages/d0/88/cba8b1bf193c09d91b98043a92efa0646493ea6c115f5d5c4d5d6879c375/OpenVAS_Reporting-1.4.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5585bcaf65515c91129ad2cc19b75f5b", "sha256": "15834df65275e8329a93609f97f90ac37634f4e2100bc3fba12156d5768a44f4" }, "downloads": -1, "filename": "OpenVAS Reporting-1.4.0.tar.gz", "has_sig": false, "md5_digest": "5585bcaf65515c91129ad2cc19b75f5b", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 305932, "upload_time": "2018-09-27T15:08:15", "url": "https://files.pythonhosted.org/packages/4d/fa/881b9ebb7f4ef372ef3504f1caef20a01fcd215b1cd71d0308aee8cad15e/OpenVAS%20Reporting-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "bcc9ce18992fa46b31838ff87bf15607", "sha256": "490e4ab5179e72dde1a72015c99a469b3d23ca32d6d59dd9156a61ded1edb071" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "bcc9ce18992fa46b31838ff87bf15607", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 17880, "upload_time": "2018-10-10T09:40:57", "url": "https://files.pythonhosted.org/packages/c8/83/778d2577dbd2b86bef61a096249c0418dc6ec4794c6847e6d7fbe8740c33/OpenVAS_Reporting-1.4.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b81378ee50b7e23149f21bae6c495593", "sha256": "518c3d24146ff2f988db810496da6767bc59cb4ec4770aa7351c73b675c33a03" }, "downloads": -1, "filename": "OpenVAS Reporting-1.4.1.tar.gz", "has_sig": false, "md5_digest": "b81378ee50b7e23149f21bae6c495593", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 306771, "upload_time": "2018-10-10T09:40:59", "url": "https://files.pythonhosted.org/packages/06/96/5d6940ee5b0bb7756d5debc54c2bc8ca1ce6a1296c142fd0c285153cb000/OpenVAS%20Reporting-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "e4d9d88c3242072b3e59a74f279f93c8", "sha256": "e18ce4a2ad2955b403b0fdffceab5d74b6a4525943b164bae863e65f5c45655a" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e4d9d88c3242072b3e59a74f279f93c8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 17936, "upload_time": "2018-11-05T17:38:59", "url": "https://files.pythonhosted.org/packages/e6/b7/9ab3a32f1779adb8c7acfb473c73c63a61f6a73446a445157865b43702ec/OpenVAS_Reporting-1.4.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8a215d572014e75710be482f2a99e6a", "sha256": "402562eb18250643881ecc8e895f59d299f5051a12275f8e67be62653bb20a77" }, "downloads": -1, "filename": "OpenVAS Reporting-1.4.2.tar.gz", "has_sig": false, "md5_digest": "f8a215d572014e75710be482f2a99e6a", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 307486, "upload_time": "2018-11-05T17:39:01", "url": "https://files.pythonhosted.org/packages/89/6f/089a1c9ca7aa95cc425c56dacfabf499f46736effb9da983980f15f7b759/OpenVAS%20Reporting-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "606c4e161c59c2ad3f698e442f42a83e", "sha256": "cda590b59a8566088f315e6740e1e89df59d1b26dfa9e3ae86cf538198c015f7" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.3-py2-none-any.whl", "has_sig": false, "md5_digest": "606c4e161c59c2ad3f698e442f42a83e", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": "~=3.7", "size": 19842, "upload_time": "2019-04-08T14:57:15", "url": "https://files.pythonhosted.org/packages/df/58/0bd2f3536f59881151426ebe30712be84b16878a6a41df11d1ff6b0de844/OpenVAS_Reporting-1.4.3-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd6717acbb8d16777936df38b0bada47", "sha256": "ee5f214536c34a12791ce4da795c1dd03746d84890bfb0f4f12388372ce93620" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.3-py3-none-any.whl", "has_sig": false, "md5_digest": "dd6717acbb8d16777936df38b0bada47", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 17986, "upload_time": "2019-04-08T14:57:17", "url": "https://files.pythonhosted.org/packages/64/2f/24c9b11082aad5be0f4c5a4f4fef53d892534aabed97e1ce12b1f38a7679/OpenVAS_Reporting-1.4.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "68227acdadebb4f870a240a70c0f2c04", "sha256": "ebe347767a20f60efd08aecc2c923ee9b92725f53bb17f0bed21122d19f269f7" }, "downloads": -1, "filename": "OpenVAS Reporting-1.4.3.tar.gz", "has_sig": false, "md5_digest": "68227acdadebb4f870a240a70c0f2c04", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 307555, "upload_time": "2019-04-08T14:57:20", "url": "https://files.pythonhosted.org/packages/d1/41/5e4b5612c5baadb70ce1c70b8e9cc7cd6de21a654aaa60d89d84d6fbe212/OpenVAS%20Reporting-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "6dc04bfd660a0b2b845e4bcffe879f4a", "sha256": "c33ac49c721cee83fd445f1af8a555a3394bfd07fd4cc61301e6c3627fd8f26e" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6dc04bfd660a0b2b845e4bcffe879f4a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 19871, "upload_time": "2019-07-25T14:02:56", "url": "https://files.pythonhosted.org/packages/77/74/5e8e0a5d09519335cbd3c8e817988c977621d34f20d3d744d53ee6a3fcd8/OpenVAS_Reporting-1.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49d66616a4bd162dab4139083dee9973", "sha256": "4ca80609e9225f998311ebb761c7cc49a2e31dbe38b4c67aa0ef4f2c55d6ceb7" }, "downloads": -1, "filename": "OpenVAS Reporting-1.4.4.tar.gz", "has_sig": false, "md5_digest": "49d66616a4bd162dab4139083dee9973", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 6132, "upload_time": "2019-07-25T14:02:59", "url": "https://files.pythonhosted.org/packages/e4/f4/dbeba21d62c0b1a377b2b519c5c6985e0e79dfeb75f49d342a48d58467ce/OpenVAS%20Reporting-1.4.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6dc04bfd660a0b2b845e4bcffe879f4a", "sha256": "c33ac49c721cee83fd445f1af8a555a3394bfd07fd4cc61301e6c3627fd8f26e" }, "downloads": -1, "filename": "OpenVAS_Reporting-1.4.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6dc04bfd660a0b2b845e4bcffe879f4a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": "~=3.7", "size": 19871, "upload_time": "2019-07-25T14:02:56", "url": "https://files.pythonhosted.org/packages/77/74/5e8e0a5d09519335cbd3c8e817988c977621d34f20d3d744d53ee6a3fcd8/OpenVAS_Reporting-1.4.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "49d66616a4bd162dab4139083dee9973", "sha256": "4ca80609e9225f998311ebb761c7cc49a2e31dbe38b4c67aa0ef4f2c55d6ceb7" }, "downloads": -1, "filename": "OpenVAS Reporting-1.4.4.tar.gz", "has_sig": false, "md5_digest": "49d66616a4bd162dab4139083dee9973", "packagetype": "sdist", "python_version": "source", "requires_python": "~=3.7", "size": 6132, "upload_time": "2019-07-25T14:02:59", "url": "https://files.pythonhosted.org/packages/e4/f4/dbeba21d62c0b1a377b2b519c5c6985e0e79dfeb75f49d342a48d58467ce/OpenVAS%20Reporting-1.4.4.tar.gz" } ] }