diff --git a/CHANGELOG.md b/CHANGELOG.md index 43cd347..6053e04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ This document records all notable changes to [nessus file analyzer by LimberDuck The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.1] - 2021-10-06 + +### Fixed + +- Concatenated column's headers `CVE numberExploit available` in Vulnerabilities tab report with unchecked option `add debug data` fixed by moving following column's headers one column to the right: + - Exploit available, + - Exploit code maturity, + - Exploit framework metasploit, + - Exploitability ease, + ## [0.7.0] - 2021-09-06 ### Added @@ -91,6 +101,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release +[0.7.1]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.5.1...v0.6.0 [0.5.1]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.5.0...v0.5.1 diff --git a/nessus_file_analyzer/__about__.py b/nessus_file_analyzer/__about__.py index 29e4587..3d3e9d8 100644 --- a/nessus_file_analyzer/__about__.py +++ b/nessus_file_analyzer/__about__.py @@ -32,8 +32,8 @@ "Nessus and Tenable.SC by (C) Tenable, Inc. and exports results to a Microsoft Excel Workbook for " \ "effortless analysis." __uri__ = "https://limberduck.org/en/latest/nessus-file-analyzer" -__version__ = "0.7.0" -__release_date__ = "2021.09.06" +__version__ = "0.7.1" +__release_date__ = "2021.10.06" __author__ = u"Damian Krawczyk" __email__ = "damian.krawczyk@limberduck.org" __license_name__ = "GNU GPLv3" diff --git a/nessus_file_analyzer/_version.py b/nessus_file_analyzer/_version.py index faee7a1..78a9143 100644 --- a/nessus_file_analyzer/_version.py +++ b/nessus_file_analyzer/_version.py @@ -1 +1 @@ -__version__ = "0.7.0" \ No newline at end of file +__version__ = "0.7.1" \ No newline at end of file diff --git a/nessus_file_analyzer/app.py b/nessus_file_analyzer/app.py index ea7bdf6..48963db 100644 --- a/nessus_file_analyzer/app.py +++ b/nessus_file_analyzer/app.py @@ -2189,7 +2189,7 @@ def create_worksheet_for_vulnerabilities(self, workbook, list_of_source_files): 'Solution', 'Plugin output', 'CVE counter', - 'CVE number' + 'CVE number', 'Exploit available', 'Exploit code maturity', 'Exploit framework metasploit', diff --git a/setup.py b/setup.py index 74ac3cf..a259434 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setuptools.setup( name="nessus_file_analyzer", version=about["__version__"], - license="LGPLv3", + license="GPLv3", author="Damian Krawczyk", author_email="damian.krawczyk@limberduck.org", description="nessus file analyzer by LimberDuck is a GUI tool which enables you to parse nessus scan files from " diff --git a/version.rc b/version.rc index a78b16d..0a6f35e 100644 --- a/version.rc +++ b/version.rc @@ -1,7 +1,7 @@ VSVersionInfo( ffi=FixedFileInfo( - filevers=(0, 7, 0, 0), - prodvers=(0, 7, 0, 0), + filevers=(0, 7, 0, 1), + prodvers=(0, 7, 0, 1), mask=0x3f, flags=0x0, OS=0x40004, @@ -16,12 +16,12 @@ VSVersionInfo( u'040904B0', [StringStruct(u'CompanyName', u'LimberDuck'), StringStruct(u'FileDescription', u'nessus file analyzer'), - StringStruct(u'FileVersion', u'0.7.0.0'), + StringStruct(u'FileVersion', u'0.7.0.1'), StringStruct(u'InternalName', u'nessus-file-analyzer'), StringStruct(u'LegalCopyright', u'\xa9 Damian Krawczyk.'), StringStruct(u'OriginalFilename', u'nessus-file-analyzer.exe'), StringStruct(u'ProductName', u'nessus file analyzer'), - StringStruct(u'ProductVersion', u'0.7.0.0')]) + StringStruct(u'ProductVersion', u'0.7.0.1')]) ]), VarFileInfo([VarStruct(u'Translation', [1033, 1200])]) ]