Skip to content

Commit 3de59ad

Browse files
h4x0rclaude
andcommitted
fix(srum-analysis): bytes_recv field name in exfil cross-table lookup (was bytes_received)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4d7bc49 commit 3de59ad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/srum-analysis/src/pipeline.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub fn apply_cross_table_signals(all: &mut Vec<serde_json::Value>) {
169169
v.get("app_id").and_then(serde_json::Value::as_i64),
170170
v.get("timestamp").and_then(serde_json::Value::as_str).map(str::to_owned),
171171
v.get("bytes_sent").and_then(serde_json::Value::as_u64),
172-
v.get("bytes_received").and_then(serde_json::Value::as_u64),
172+
v.get("bytes_recv").and_then(serde_json::Value::as_u64),
173173
) {
174174
net_map.insert((app_id, ts), (sent, recv));
175175
}

0 commit comments

Comments
 (0)