Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartinez95 committed Jul 20, 2023
2 parents 30bbfe9 + 33e3d85 commit db9f67d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG/2.6.1/187.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[FIX] Now nuclei executor use -j flag instead of -json. #187
1 change: 1 addition & 0 deletions CHANGELOG/2.6.1/date.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
July 20th, 2023
10 changes: 7 additions & 3 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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]:
---
Expand Down
2 changes: 1 addition & 1 deletion faraday_agent_dispatcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

__author__ = """Faraday Development Team"""
__email__ = "[email protected]"
__version__ = "2.6.0"
__version__ = "2.6.1"
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit db9f67d

Please sign in to comment.