Skip to content

Commit

Permalink
feat:During batch scanning, too many targets cause the output results…
Browse files Browse the repository at this point in the history
… to exceed the display range.
  • Loading branch information
wh0am1i committed Apr 29, 2024
1 parent 0995e82 commit 8e4070b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pocsuite3/lib/controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def show_task_result():
if row.status == 'success':
success_num += 1

data_to_stdout('\n{0}'.format(results_table.get_string(sortby="status", reversesort=True)))
data_to_stdout('\n{0}'.format(results_table.get_string(sortby="status", reversesort=False)))
data_to_stdout("\nsuccess : {} / {}\n".format(success_num, total_num))


Expand Down

0 comments on commit 8e4070b

Please sign in to comment.