diff --git a/CHANGELOG/2.6.1/187.md b/CHANGELOG/2.6.1/187.md new file mode 100644 index 00000000..48a465ad --- /dev/null +++ b/CHANGELOG/2.6.1/187.md @@ -0,0 +1 @@ +[FIX] Now nuclei executor use -j flag instead of -json. #187 diff --git a/CHANGELOG/2.6.1/date.md b/CHANGELOG/2.6.1/date.md new file mode 100644 index 00000000..da1b175b --- /dev/null +++ b/CHANGELOG/2.6.1/date.md @@ -0,0 +1 @@ +July 20th, 2023 diff --git a/RELEASE.md b/RELEASE.md index 2cf11e76..8606eec0 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,13 +1,17 @@ +2.6.1 [July 20th, 2023]: +--- + * [FIX] Now nuclei executor use -j flag instead of -json. #187 + 2.6.0 [July 7th, 2023]: --- - * [ADD] Add HCL Appscan executor. #186 + * [ADD] Add HCL Appscan executer #186 2.5.1 [Jan 3rd, 2023]: --- * [DEL] Now nuclei doesn't check if the target is an ip * [MOD] Add a fixes for bandit vuln: - - Replace assert return code with a if - - Remove default x_token in nessus executor + - Replace assert return code with a if + - Remove default x_token in nessus executor 2.5.0 [Nov 30th, 2022]: --- diff --git a/faraday_agent_dispatcher/__init__.py b/faraday_agent_dispatcher/__init__.py index b847ff51..aba7fb1a 100644 --- a/faraday_agent_dispatcher/__init__.py +++ b/faraday_agent_dispatcher/__init__.py @@ -20,4 +20,4 @@ __author__ = """Faraday Development Team""" __email__ = "devel@infobytesec.com" -__version__ = "2.6.0" +__version__ = "2.6.1" diff --git a/faraday_agent_dispatcher/static/executors/official/nuclei.py b/faraday_agent_dispatcher/static/executors/official/nuclei.py index b824c365..2331dd2b 100755 --- a/faraday_agent_dispatcher/static/executors/official/nuclei.py +++ b/faraday_agent_dispatcher/static/executors/official/nuclei.py @@ -66,7 +66,7 @@ def main(): for exclude in exclude_list: cmd += ["-exclude", str(Path(NUCLEI_TEMPLATES) / exclude)] - cmd += ["-json", "-o", name_output] + cmd += ["-j", "-o", name_output] nuclei_process = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) if len(nuclei_process.stdout) > 0: