Skip to content

Commit

Permalink
Merge pull request #15 from LimberDuck/develop
Browse files Browse the repository at this point in the history
v. 0.7.1
  • Loading branch information
damian-krawczyk authored Oct 6, 2021
2 parents da0795a + 7406c91 commit ea451d1
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nessus_file_analyzer/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"
__license_name__ = "GNU GPLv3"
Expand Down
2 changes: 1 addition & 1 deletion nessus_file_analyzer/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.0"
__version__ = "0.7.1"
2 changes: 1 addition & 1 deletion nessus_file_analyzer/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
setuptools.setup(
name="nessus_file_analyzer",
version=about["__version__"],
license="LGPLv3",
license="GPLv3",
author="Damian Krawczyk",
author_email="[email protected]",
description="nessus file analyzer by LimberDuck is a GUI tool which enables you to parse nessus scan files from "
Expand Down
8 changes: 4 additions & 4 deletions version.rc
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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])])
]
Expand Down

0 comments on commit ea451d1

Please sign in to comment.