Skip to content
Open
Changes from 1 commit
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
13 changes: 11 additions & 2 deletions web/apiv2/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -1201,8 +1201,17 @@ def tasks_report(request, task_id, report_format="json", make_zip=False):
}

report_formats = {
# Use the 'all' option if you want all generated files except for memory.dmp
"all": {"type": "-", "files": ["memory.dmp"]},
# Use the 'all' option if you want all generated files except for memory.dmp and derived pcaps
"all": {
"type": "-",
"files": [
"memory.dmp",
"dump_decrypted.pcap",
"dump_mixed.pcap",
"dump_mixed_sorted.pcap",
"dump_sorted.pcap",
],
Comment thread
RobertBendun marked this conversation as resolved.
},
# Use the 'dropped' option if you want all dropped files found in the /files directory
"dropped": {"type": "+", "files": ["files"]},
# Use the 'dist' option if you want all generated files except for binary, dump_sorted.pcap, memory.dmp, and
Expand Down
Loading