Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ This document records all notable changes to [LimberDuck NFA (nessus file analyz
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.2] - 2026-01-18

### Fixed

- requirements updated to require nessus-file-analyzer v0.12.0 or newer
- author name corrected

## [0.1.1] - 2026-01-18

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion nfa_plugin_software_enumeration/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Software Enumeration Plugin for NFA.
"""

__version__ = "0.1.1"
__version__ = "0.1.2"
4 changes: 2 additions & 2 deletions nfa_plugin_software_enumeration/software_enumeration.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def get_metadata(self) -> PluginMetadata:
return PluginMetadata(
name="Software Enumeration",
id="software_enumeration",
version="0.1.1",
version="0.1.2",
description="Generate inventory of installed software on Windows and Linux hosts",
author="NFA Plugin Examples",
author="Damian Krawczyk",
plugin_ids=[20811, 22869]
)

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nessus_file_analyzer>=0.11.0
nessus_file_analyzer>=0.12.0
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="nfa-plugin-software-enumeration",
version="0.1.1",
version="0.1.2",
author="Damian Krawczyk",
author_email="damian.krawczyk@limberduck.org",
description="Software Enumeration report plugin for LimberDuck NFA (nessus file analyzer)",
Expand All @@ -14,7 +14,7 @@
url="https://limberduck.org/en/latest/tools/nessus-file-analyzer/advanced-reports/software-enumeration/",
packages=setuptools.find_packages(),
install_requires=[
"nessus-file-analyzer>=0.11.0",
"nessus-file-analyzer>=0.12.0",
],
entry_points={
"nfa.plugins": [
Expand Down