-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathdetection.rs
More file actions
1039 lines (939 loc) · 35 KB
/
Copy pathdetection.rs
File metadata and controls
1039 lines (939 loc) · 35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//! Danger detection logic for the policy engine.
use crate::command::ParsedCommand;
use crate::config::PolicyConfig;
use crate::danger::{DangerCategory, DangerDetection};
/// Helper functions for danger detection.
pub(crate) struct DetectionHelper<'a> {
pub config: &'a PolicyConfig,
}
impl<'a> DetectionHelper<'a> {
/// Create a new detection helper.
pub fn new(config: &'a PolicyConfig) -> Self {
Self { config }
}
/// Normalize a path for comparison.
pub fn normalize_path(path: &str) -> String {
let mut normalized = String::with_capacity(path.len());
let mut previous_was_slash = false;
for ch in path.chars() {
let ch = if ch == '\\' { '/' } else { ch };
if ch == '/' {
if previous_was_slash {
continue;
}
previous_was_slash = true;
} else {
previous_was_slash = false;
}
normalized.push(ch);
}
// Handle trailing slashes
while normalized.len() > 1 && normalized.ends_with('/') {
normalized.pop();
}
// Expand ~ to /home or user directory indicator
if normalized.starts_with('~') {
normalized = normalized.replacen('~', "/home", 1);
}
normalized
}
/// Check if a path is considered sensitive.
pub fn is_sensitive_path(&self, path: &str) -> bool {
let normalized = Self::normalize_path(path);
// Check exact matches and prefixes
for sensitive in &self.config.sensitive_paths {
let sens_normalized = Self::normalize_path(sensitive);
// Exact match
if normalized == sens_normalized {
return true;
}
// Path is inside sensitive directory
if normalized.starts_with(&format!("{sens_normalized}/")) {
return true;
}
// Sensitive path is root-level
if sens_normalized == "/" && (normalized == "/" || normalized.is_empty()) {
return true;
}
}
false
}
/// Check if a path refers to a block device.
pub fn is_block_device(&self, path: &str) -> bool {
for pattern in &self.config.block_device_patterns {
if path.starts_with(pattern) || path.contains(pattern) {
return true;
}
}
false
}
/// Check for destructive file operations.
pub fn check_destructive_file_ops(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
match prog {
"rm" => {
// Check for recursive flag
let has_recursive = parsed.has_flag(Some('r'), Some("recursive"))
|| parsed.has_flag(Some('R'), None);
// Check for force flag
let has_force = parsed.has_flag(Some('f'), Some("force"));
if has_recursive {
// Check if targeting sensitive paths
for arg in &parsed.args {
let normalized = Self::normalize_path(arg);
if self.is_sensitive_path(&normalized) || normalized == "/" {
*detection = DangerDetection::dangerous(
DangerCategory::DestructiveFileOp,
format!("rm with recursive flag targeting sensitive path: {arg}"),
10,
false,
);
return;
}
}
// Recursive deletion is always at least a warning
if has_force {
detection.add_category(
DangerCategory::DestructiveFileOp,
"rm -rf detected (recursive force delete)",
);
detection.is_dangerous = true;
detection.severity = 8;
detection.context_mitigatable = true;
}
}
}
"shred" | "wipe" | "srm" => {
// Secure delete commands
for arg in &parsed.args {
let normalized = Self::normalize_path(arg);
if self.is_sensitive_path(&normalized) {
*detection = DangerDetection::dangerous(
DangerCategory::DestructiveFileOp,
format!("secure delete on sensitive path: {arg}"),
10,
false,
);
return;
}
}
}
"mv" | "cp" => {
// Check if overwriting sensitive paths
let positional = parsed.positional_args();
if let Some(dest) = positional.last() {
let normalized = Self::normalize_path(dest);
if self.is_sensitive_path(&normalized) && !normalized.starts_with("/tmp") {
*detection = DangerDetection::dangerous(
DangerCategory::DestructiveFileOp,
format!("{prog} to sensitive destination: {dest}"),
7,
true,
);
}
}
}
"truncate" => {
// Truncating files can be destructive
if let Some(file) = parsed.get_flag_value(Some('s'), Some("size"))
&& file == "0"
{
detection.add_category(
DangerCategory::DestructiveFileOp,
"truncating file to zero size",
);
detection.is_dangerous = true;
detection.severity = 5;
detection.context_mitigatable = true;
}
}
_ => {}
}
}
/// Check for disk/device operations.
pub fn check_disk_operations(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
let prog = parsed.program_basename.as_str();
// Direct disk manipulation commands
let disk_commands = [
"dd",
"fdisk",
"gdisk",
"parted",
"mkfs",
"mkfs.ext4",
"mkfs.ext3",
"mkfs.xfs",
"mkfs.btrfs",
"mkfs.ntfs",
"mkfs.vfat",
"mkswap",
"swapon",
"swapoff",
"hdparm",
"sdparm",
"blkdiscard",
"wipefs",
"badblocks",
"e2fsck",
"fsck",
"tune2fs",
"resize2fs",
"lvremove",
"vgremove",
"pvremove",
"lvcreate",
"vgcreate",
"pvcreate",
"cryptsetup",
"losetup",
"mdadm",
"dmsetup",
];
if disk_commands.contains(&prog) || prog.starts_with("mkfs.") {
// Check if operating on actual block devices
for arg in &parsed.args {
if self.is_block_device(arg) {
*detection = DangerDetection::dangerous(
DangerCategory::DiskOperation,
format!("{prog} operating on block device: {arg}"),
10,
false,
);
return;
}
}
// Even without block device, these commands are risky
detection.add_category(
DangerCategory::DiskOperation,
&format!("disk manipulation command: {prog}"),
);
detection.is_dangerous = true;
detection.severity = 8;
detection.context_mitigatable = true;
}
// Special handling for dd
if prog == "dd" {
let has_dangerous_target = parsed.args.iter().any(|arg| {
if let Some(of_value) = arg.strip_prefix("of=") {
return self.is_block_device(of_value) || self.is_sensitive_path(of_value);
}
false
});
if has_dangerous_target {
*detection = DangerDetection::dangerous(
DangerCategory::DiskOperation,
"dd writing to block device or sensitive path",
10,
false,
);
}
}
}
/// Check for privilege escalation commands.
pub fn check_privilege_escalation(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
let priv_commands = [
"sudo", "doas", "su", "pkexec", "runuser", "setpriv", "runas",
];
if priv_commands.contains(&prog) && !self.config.allow_privilege_escalation {
*detection = DangerDetection::dangerous(
DangerCategory::PrivilegeEscalation,
format!("privilege escalation via {prog}"),
9,
false,
);
}
// Also check for setuid/setgid manipulation
if prog == "chmod"
&& (parsed.has_arg("+s") || parsed.has_arg("u+s") || parsed.has_arg("g+s"))
{
*detection = DangerDetection::dangerous(
DangerCategory::PrivilegeEscalation,
"setting setuid/setgid bit",
9,
false,
);
}
// Check for capability manipulation
if prog == "setcap" || prog == "getcap" {
detection.add_category(
DangerCategory::PrivilegeEscalation,
&format!("capability manipulation via {prog}"),
);
detection.is_dangerous = true;
detection.severity = 8;
detection.context_mitigatable = true;
}
}
/// Check for fork bomb patterns.
pub fn check_fork_bomb(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
let raw = &parsed.raw;
// Classic fork bomb patterns
let fork_bomb_patterns = [
":(){ :|:& };:",
":(){ :|:& };",
":(){:|:&};:",
".LiSt(){.LiSt|.LiSt&};.LiSt",
"bomb() { bomb | bomb & }; bomb",
"fork() { fork | fork & }; fork",
"forkbomb(){ forkbomb|forkbomb & };forkbomb",
"%0|%0", // Windows fork bomb
];
for pattern in fork_bomb_patterns {
if raw.contains(pattern) {
*detection = DangerDetection::dangerous(
DangerCategory::ForkBomb,
"fork bomb pattern detected",
10,
false,
);
return;
}
}
// Check for recursive call patterns in bash/sh
let prog = parsed.program_basename.as_str();
if (prog == "bash" || prog == "sh" || prog == "zsh")
&& (raw.contains("(){") && raw.contains("|") && raw.contains("&"))
{
detection.add_category(
DangerCategory::ForkBomb,
"potential fork bomb pattern in shell command",
);
detection.is_dangerous = true;
detection.severity = 10;
detection.context_mitigatable = false;
}
// Check for while true infinite loops with spawning
if (raw.contains("while true") || raw.contains("while :") || raw.contains("while 1"))
&& raw.contains("&")
&& (raw.contains("fork") || raw.contains("|"))
{
detection.add_category(
DangerCategory::ForkBomb,
"potential infinite loop with process spawning",
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = true;
}
}
/// Check for remote code execution patterns.
pub fn check_remote_code_execution(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
let raw = &parsed.raw;
// Check for curl/wget piped to shell
let downloaders = ["curl", "wget", "fetch", "httpie", "http", "aria2c"];
let shells = ["sh", "bash", "zsh", "ksh", "fish", "dash", "ash"];
if downloaders.contains(&prog) && parsed.has_pipe {
// Check if piped to shell
for shell in shells {
if raw.contains(&format!("| {shell}"))
|| raw.contains(&format!("|{shell}"))
|| raw.contains(&format!("| /bin/{shell}"))
|| raw.contains(&format!("|/bin/{shell}"))
{
*detection = DangerDetection::dangerous(
DangerCategory::RemoteCodeExecution,
format!("{prog} output piped to {shell} - remote code execution"),
10,
false,
);
return;
}
}
// Check for python/perl/ruby execution
let interpreters = ["python", "python3", "perl", "ruby", "node", "php"];
for interp in interpreters {
if raw.contains(&format!("| {interp}")) || raw.contains(&format!("|{interp}")) {
*detection = DangerDetection::dangerous(
DangerCategory::RemoteCodeExecution,
format!("{prog} output piped to {interp} - remote code execution"),
10,
false,
);
return;
}
}
}
// Check for eval with remote content
if (prog == "eval" || (shells.contains(&prog) && parsed.has_arg("-c")))
&& (raw.contains("curl") || raw.contains("wget") || raw.contains("$("))
{
detection.add_category(
DangerCategory::RemoteCodeExecution,
"eval or shell -c with potential remote content",
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = true;
}
// Check for xargs with shell commands
if prog == "xargs" && (parsed.has_arg("sh") || parsed.has_arg("bash")) {
detection.add_category(
DangerCategory::RemoteCodeExecution,
"xargs executing shell commands",
);
detection.is_dangerous = true;
detection.severity = 7;
detection.context_mitigatable = true;
}
}
/// Check for insecure permission settings.
pub fn check_insecure_permissions(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
if prog == "chmod" {
// Check for overly permissive modes
let dangerous_modes = ["777", "666", "o+w", "a+w", "+w"];
for mode in dangerous_modes {
if parsed.has_arg(mode) {
// Check if on sensitive paths
for arg in &parsed.args {
if arg != mode && !arg.starts_with('-') {
let normalized = Self::normalize_path(arg);
if self.is_sensitive_path(&normalized) {
*detection = DangerDetection::dangerous(
DangerCategory::InsecurePermissions,
format!("chmod {mode} on sensitive path: {arg}"),
9,
false,
);
return;
}
}
}
detection.add_category(
DangerCategory::InsecurePermissions,
&format!("insecure permission mode: {mode}"),
);
detection.is_dangerous = true;
detection.severity = 6;
detection.context_mitigatable = true;
break;
}
}
// Check for recursive chmod on root-level directories
if parsed.has_flag(Some('R'), Some("recursive")) {
for arg in &parsed.args {
if !arg.starts_with('-') {
let normalized = Self::normalize_path(arg);
if normalized == "/" || self.is_sensitive_path(&normalized) {
*detection = DangerDetection::dangerous(
DangerCategory::InsecurePermissions,
format!("recursive chmod on sensitive path: {arg}"),
10,
false,
);
return;
}
}
}
}
}
// Check for chown on sensitive paths
if (prog == "chown" || prog == "chgrp") && parsed.has_flag(Some('R'), Some("recursive")) {
for arg in &parsed.args {
if !arg.starts_with('-') && !arg.contains(':') {
let normalized = Self::normalize_path(arg);
if self.is_sensitive_path(&normalized) {
*detection = DangerDetection::dangerous(
DangerCategory::InsecurePermissions,
format!("recursive {prog} on sensitive path: {arg}"),
9,
false,
);
return;
}
}
}
}
// Check for umask with insecure values
if prog == "umask" && (parsed.has_arg("000") || parsed.has_arg("0000")) {
detection.add_category(
DangerCategory::InsecurePermissions,
"umask set to fully permissive",
);
detection.is_dangerous = true;
detection.severity = 5;
detection.context_mitigatable = true;
}
}
/// Check for system service modifications.
pub fn check_system_service_mods(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
let service_commands = [
"systemctl",
"service",
"chkconfig",
"update-rc.d",
"rc-update",
"launchctl",
"sc", // Windows service control
"net", // Windows net start/stop
];
if service_commands.contains(&prog) {
// Check for modification operations
let dangerous_ops = [
"stop",
"start",
"restart",
"enable",
"disable",
"mask",
"unmask",
"daemon-reload",
"kill",
"halt",
"poweroff",
"reboot",
];
for op in dangerous_ops {
if parsed.has_arg(op) && !self.config.allow_service_modifications {
*detection = DangerDetection::dangerous(
DangerCategory::SystemServiceMod,
format!("{prog} {op} - system service modification"),
8,
true,
);
return;
}
}
}
// Check for init system commands
let init_commands = ["init", "telinit", "shutdown", "halt", "reboot", "poweroff"];
if init_commands.contains(&prog) {
*detection = DangerDetection::dangerous(
DangerCategory::SystemServiceMod,
format!("system state change via {prog}"),
10,
false,
);
}
}
/// Check for network exposure.
pub fn check_network_exposure(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
let prog = parsed.program_basename.as_str();
// Netcat listening
if (prog == "nc" || prog == "netcat" || prog == "ncat")
&& parsed.has_flag(Some('l'), Some("listen"))
{
let port = parsed.get_flag_value(Some('p'), Some("port"));
if let Some(p) = port
&& let Ok(port_num) = p.parse::<u16>()
&& self.config.dangerous_ports.contains(&port_num)
{
*detection = DangerDetection::dangerous(
DangerCategory::NetworkExposure,
format!("nc listening on sensitive port {port_num}"),
9,
true,
);
return;
}
detection.add_category(
DangerCategory::NetworkExposure,
"netcat listening for connections",
);
detection.is_dangerous = true;
detection.severity = 7;
detection.context_mitigatable = true;
}
// Python HTTP server
if (prog == "python" || prog == "python3" || prog == "python2")
&& parsed.has_arg("-m")
&& (parsed.has_arg("http.server")
|| parsed.has_arg("SimpleHTTPServer")
|| parsed.has_arg("CGIHTTPServer"))
{
detection.add_category(
DangerCategory::NetworkExposure,
"Python HTTP server exposing files",
);
detection.is_dangerous = true;
detection.severity = 7;
detection.context_mitigatable = true;
}
// PHP built-in server
if prog == "php" && parsed.has_flag(Some('S'), None) {
detection.add_category(
DangerCategory::NetworkExposure,
"PHP built-in server exposing files",
);
detection.is_dangerous = true;
detection.severity = 7;
detection.context_mitigatable = true;
}
// Ruby HTTP server
if prog == "ruby" && (parsed.has_arg("-run") || parsed.has_arg_containing("httpd")) {
detection.add_category(
DangerCategory::NetworkExposure,
"Ruby HTTP server exposing files",
);
detection.is_dangerous = true;
detection.severity = 7;
detection.context_mitigatable = true;
}
// SSH tunneling
if prog == "ssh" && (parsed.has_flag(Some('R'), None) || parsed.has_flag(Some('L'), None)) {
detection.add_category(DangerCategory::NetworkExposure, "SSH tunnel creation");
detection.is_dangerous = true;
detection.severity = 6;
detection.context_mitigatable = true;
}
// socat listening
if prog == "socat" && parsed.raw.to_lowercase().contains("listen") {
detection.add_category(DangerCategory::NetworkExposure, "socat listening mode");
detection.is_dangerous = true;
detection.severity = 7;
detection.context_mitigatable = true;
}
// ngrok/localtunnel exposure
let tunnel_tools = ["ngrok", "localtunnel", "lt", "serveo", "cloudflared"];
if tunnel_tools.contains(&prog) {
detection.add_category(
DangerCategory::NetworkExposure,
&format!("tunnel/exposure tool: {prog}"),
);
detection.is_dangerous = true;
detection.severity = 8;
detection.context_mitigatable = true;
}
}
/// Check for credential/secret access.
pub fn check_credential_access(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
let prog = parsed.program_basename.as_str();
// Reading sensitive files
let read_commands = [
"cat", "less", "more", "head", "tail", "vim", "vi", "nano", "grep",
];
let sensitive_files = [
"/etc/shadow",
"/etc/passwd",
"/etc/sudoers",
".ssh/id_rsa",
".ssh/id_ed25519",
".ssh/id_ecdsa",
".gnupg/",
".aws/credentials",
".kube/config",
".docker/config.json",
".netrc",
".npmrc",
".pypirc",
];
if read_commands.contains(&prog) {
for arg in &parsed.args {
for sensitive in sensitive_files {
if arg.contains(sensitive) {
detection.add_category(
DangerCategory::CredentialAccess,
&format!("reading sensitive file: {arg}"),
);
detection.is_dangerous = true;
detection.severity = 8;
detection.context_mitigatable = true;
return;
}
}
}
}
// Password/secret dumping tools
let secret_tools = [
"unshadow",
"john",
"hashcat",
"mimikatz",
"secretsdump",
"lazagne",
"pass",
"gpg",
"keychain",
];
if secret_tools.contains(&prog) {
detection.add_category(
DangerCategory::CredentialAccess,
&format!("credential/secret tool: {prog}"),
);
detection.is_dangerous = true;
detection.severity = 8;
detection.context_mitigatable = true;
}
// Environment variable exposure with secrets
if prog == "env" || prog == "printenv" || prog == "export" {
// These are informational but could expose secrets in logs
detection.add_category(
DangerCategory::CredentialAccess,
"environment variable exposure",
);
detection.severity = 3;
// Not dangerous by itself, just a note
}
}
/// Check for kernel/system modifications.
pub fn check_kernel_modifications(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
let kernel_commands = [
"insmod",
"rmmod",
"modprobe",
"depmod",
"sysctl",
"kmod",
"update-initramfs",
"dracut",
"mkinitcpio",
"grub-install",
"grub-mkconfig",
"efibootmgr",
"bcdedit", // Windows boot config
];
if kernel_commands.contains(&prog) {
*detection = DangerDetection::dangerous(
DangerCategory::KernelModification,
format!("kernel/boot modification via {prog}"),
10,
false,
);
}
// Check for direct writes to /proc or /sys
for arg in &parsed.args {
if arg.starts_with("/proc/") || arg.starts_with("/sys/") {
detection.add_category(
DangerCategory::KernelModification,
&format!("direct access to kernel interface: {arg}"),
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = false;
break;
}
}
}
/// Check for container escape attempts.
pub fn check_container_escape(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
let prog = parsed.program_basename.as_str();
let raw = &parsed.raw;
// Docker socket access
if raw.contains("/var/run/docker.sock") || raw.contains("docker.sock") {
detection.add_category(
DangerCategory::ContainerEscape,
"Docker socket access (potential container escape)",
);
detection.is_dangerous = true;
detection.severity = 10;
detection.context_mitigatable = false;
}
// Mount namespace manipulation
if prog == "nsenter" || prog == "unshare" {
detection.add_category(
DangerCategory::ContainerEscape,
&format!("namespace manipulation via {prog}"),
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = false;
}
// Privileged container operations
if (prog == "docker" || prog == "podman")
&& (parsed.has_arg("--privileged")
|| parsed.has_arg("--cap-add")
|| parsed.has_arg("--pid=host")
|| parsed.has_arg("--network=host"))
{
detection.add_category(
DangerCategory::ContainerEscape,
"privileged container operation",
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = false;
}
// cgroup manipulation
if raw.contains("/sys/fs/cgroup") {
detection.add_category(
DangerCategory::ContainerEscape,
"cgroup manipulation (potential container escape)",
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = false;
}
}
/// Check for history manipulation.
pub fn check_history_manipulation(
&self,
parsed: &ParsedCommand,
detection: &mut DangerDetection,
) {
let prog = parsed.program_basename.as_str();
let raw = &parsed.raw;
// History clearing commands
if prog == "history" && (parsed.has_arg("-c") || parsed.has_arg("-w")) {
detection.add_category(
DangerCategory::HistoryManipulation,
"shell history manipulation",
);
detection.is_dangerous = true;
detection.severity = 5;
detection.context_mitigatable = true;
}
// Direct history file manipulation
let history_files = [
".bash_history",
".zsh_history",
".history",
".sh_history",
"fish_history",
];
for hist in history_files {
if raw.contains(hist) {
detection.add_category(
DangerCategory::HistoryManipulation,
&format!("history file access: {hist}"),
);
detection.is_dangerous = true;
detection.severity = 5;
detection.context_mitigatable = true;
break;
}
}
// HISTFILE unsetting
if raw.contains("unset HISTFILE")
|| raw.contains("HISTFILE=/dev/null")
|| raw.contains("HISTSIZE=0")
{
detection.add_category(
DangerCategory::HistoryManipulation,
"disabling command history",
);
detection.is_dangerous = true;
detection.severity = 6;
detection.context_mitigatable = true;
}
}
/// Check for potential crypto mining.
pub fn check_crypto_mining(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
let prog = parsed.program_basename.as_str();
let raw_lower = parsed.raw.to_lowercase();
// Known mining software
let miners = [
"xmrig",
"cpuminer",
"cgminer",
"bfgminer",
"ethminer",
"claymore",
"phoenixminer",
"t-rex",
"gminer",
"nbminer",
"minerd",
"minergate",
];
if miners.contains(&prog) {
*detection = DangerDetection::dangerous(
DangerCategory::CryptoMining,
format!("cryptocurrency miner: {prog}"),
10,
false,
);
return;
}
// Mining pool connections
let mining_indicators = [
"stratum+tcp://",
"stratum+ssl://",
"pool.mining",
"nicehash",
"ethermine",
"f2pool",
"nanopool",
"moneroocean",
"--algo",
"--donate-level",
];
for indicator in mining_indicators {
if raw_lower.contains(indicator) {
detection.add_category(
DangerCategory::CryptoMining,
&format!("mining indicator detected: {indicator}"),
);
detection.is_dangerous = true;
detection.severity = 9;
detection.context_mitigatable = false;
return;
}
}
}
/// Check custom dangerous patterns from configuration.
pub fn check_custom_patterns(&self, parsed: &ParsedCommand, detection: &mut DangerDetection) {
// Check custom safe patterns first (allow override)
for pattern in &self.config.custom_safe_patterns {
if parsed.raw.contains(pattern) || parsed.program_basename == *pattern {
return; // Explicitly safe
}
}
// Check custom dangerous patterns
for pattern in &self.config.custom_dangerous_patterns {
if parsed.raw.contains(pattern) || parsed.program_basename == *pattern {
detection.add_category(
DangerCategory::CustomRule,
&format!("matches custom dangerous pattern: {pattern}"),