Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion implants/lib/eldritch/src/runtime/messages/report_file.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ impl Dispatcher for ReportFileMessage {
// Configure Limits
const CHUNK_SIZE: usize = 1024; // 1 KB Limit (/chunk)
const MAX_CHUNKS_QUEUED: usize = 10; // 10 KB Limit (in channel)
const MAX_FILE_SIZE: usize = 1024 * 1024 * 1024; // 1GB Limit (total file size)
const MAX_FILE_SIZE: usize = 32 * 1024 * 1024 * 1024; // 32GB Limit (total file size)

// Use a sync_channel to limit memory usage in case of network errors.
// e.g. stop reading the file until more chunks can be sent.
Expand Down
Loading