Skip to content

Commit

Permalink
Merge pull request #4 from yogeshojha/master
Browse files Browse the repository at this point in the history
Rebase from yogeshojha/rengine
  • Loading branch information
AnonymousWP committed Apr 5, 2023
2 parents e900133 + badde2e commit c08337a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/reNgine/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1787,11 +1787,11 @@ def vulnerability_scan(

vulnerability_scan_input_file = results_dir + urls_path

nuclei_command = 'nuclei -json -l {} -o {}'.format(
nuclei_command = 'nuclei -j -l {} -o {}'.format(
vulnerability_scan_input_file, vulnerability_result_path)
else:
url_to_scan = subdomain.http_url if subdomain.http_url else 'https://' + subdomain.name
nuclei_command = 'nuclei -json -u {} -o {}'.format(url_to_scan, vulnerability_result_path)
nuclei_command = 'nuclei -j -u {} -o {}'.format(url_to_scan, vulnerability_result_path)
domain_id = scan_history.domain.id
domain = Domain.objects.get(id=domain_id)

Expand Down

0 comments on commit c08337a

Please sign in to comment.