shellfirm 0.3.7

`shellfirm` will intercept any risky patterns (default or defined by you) and prompt you a small challenge for double verification, kinda like a captcha for your terminal.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
---
# -- fs:blockdev_disk_modify --
- test: "blockdev --setro /dev/sda"
  description: "match setting read-only mode"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev   --setro   /dev/sda"
  description: "match setting read-only mode with spaces"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --setrw /dev/sda"
  description: "match setting read-write mode"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev   --setrw  /dev/sda"
  description: "match setting read-write mode with spaces"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --flushbufs /dev/sda"
  description: "match flushing buffers"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --rereadpt /dev/sda"
  description: "match rereading partition table"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev  --rereadpt  /dev/sda"
  description: "match rereading partition table with spaces"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --report /dev/sda"
  description: "match reporting device information"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --getro /dev/sda"
  description: "match getting read-only status"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --getss /dev/sda"
  description: "match getting sector size"
  expect_ids: ["fs:blockdev_disk_modify"]
- test: "blockdev --report"
  description: "should not match reporting all devices without modification"
  expect_ids: []
- test: "blockdev --report /tmp/test.img"
  description: "should not match regular file"
  expect_ids: []

# -- fs:dd_advanced_disk_write --
- test: "dd if=file of=/dev/sda seek=1"
  description: "match writing at specific sector"
  expect_ids: ["fs:dd_block_device"]
- test: "dd  if=file  of=/dev/sda    seek=1"
  description: "match writing at specific sector with spaces"
  expect_ids: ["fs:dd_block_device"]
- test: "dd  seek=1   of=/dev/sda    if=file"
  description: "match writing at specific sector with spaces"
  expect_ids: ["fs:dd_advanced_disk_write", "fs:dd_block_device"]
- test: "dd conv=notrunc of=/dev/sdb if=file"
  description: "match writing with conv before of targeting block device"
  expect_ids: ["fs:dd_advanced_disk_write", "fs:dd_block_device"]
- test: "dd seek=1 of=/tmp/output.txt if=file"
  description: "should not match when of targets a regular file"
  expect_ids: []
- test: "dd if=file of=/dev/sda conv=notrunc"
  description: "match writing without truncating"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=/dev/sda of=file skip=1"
  description: "match reading from specific sector"
  expect_ids: []
- test: "dd if=file of=/dev/sda seek=2048 bs=512"
  description: "match writing at specific sector with block size"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=file of=/dev/sda conv=notrunc,noerror"
  description: "match writing with multiple conversion options"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=file of=/dev/sda seek=1 skip=1"
  description: "match writing with both seek and skip"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=file of=/dev/sda bs=4M seek=1"
  description: "match writing with large block size"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=file of=output.txt"
  description: "should not match regular file operations"
  expect_ids: []
- test: "dd if=/dev/sda of=backup.img"
  description: "should not match reading from disk"
  expect_ids: []

# -- fs:dd_block_device --
- test: "dd if=image.img of=/dev/sda"
  description: "match command writing to hard disk"
  expect_ids: ["fs:dd_block_device"]
- test: "dd  if=image.img    of=/dev/sda"
  description: "match command writing to hard disk with spaces"
  expect_ids: ["fs:dd_block_device"]
- test: "dd      of=/dev/sda if=image.img"
  description: "match command writing to hard disk with spaces"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sdb"
  description: "match command writing to second hard disk"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/mmcblk0"
  description: "match command writing to SD card"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda1"
  description: "match command writing to partition"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda bs=4M"
  description: "match command with block size parameter"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=/dev/sda of=backup.img"
  description: "should not match reading from disk"
  expect_ids: []
- test: "dd if=file.txt of=output.txt"
  description: "should not match regular file operations"
  expect_ids: []
- test: "dd   if=image.img   of=/dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:dd_block_device"]
- test: "dd   of=/dev/sda   if=image.img"
  description: "match command with extra spaces"
  expect_ids: ["fs:dd_block_device"]
- test: "sudo dd if=image.img of=/dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:dd_block_device"]
- test: "sudo dd of=/dev/sda if=image.img"
  description: "match command with sudo"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda bs=4M count=1"
  description: "match command with count parameter"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda bs=4M seek=1"
  description: "match command with seek parameter"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda bs=4M conv=notrunc"
  description: "match command with conv parameter"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda2"
  description: "match command with different partition"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sdb"
  description: "match command with different disk"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/mmcblk0p2"
  description: "match command with different SD card partition"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda status=progress"
  description: "match command with progress status"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda status=none"
  description: "match command with no status"
  expect_ids: ["fs:dd_block_device"]
- test: "dd if=image.img of=/dev/sda status=noxfer"
  description: "match command with no transfer status"
  expect_ids: ["fs:dd_block_device"]

# -- fs:delete_find_files --
- test: "find . -delete"
  description: "match command"
  expect_ids: ["fs:delete_find_files"]
- test: "find / -delete"
  description: "match command"
  expect_ids: ["fs:delete_find_files"]
- test: "findd / -delete"
  description: "invalid command"
  expect_ids: []
- test: "find   .   -delete"
  description: "match command with extra spaces"
  expect_ids: ["fs:delete_find_files"]
- test: "find   /   -delete"
  description: "match command with extra spaces"
  expect_ids: ["fs:delete_find_files"]
- test: "sudo find . -delete"
  description: "match command with sudo"
  expect_ids: ["fs:delete_find_files"]
- test: "sudo find / -delete"
  description: "match command with sudo"
  expect_ids: ["fs:delete_find_files"]
- test: "find . -type f -delete"
  description: "match command with type option"
  expect_ids: ["fs:delete_find_files"]
- test: "find / -name '*.txt' -delete"
  description: "match command with name pattern"
  expect_ids: ["fs:delete_find_files"]
- test: "find . -mtime +7 -delete"
  description: "match command with time option"
  expect_ids: ["fs:delete_find_files"]
- test: "find /home -delete"
  description: "match command with home directory"
  expect_ids: ["fs:delete_find_files"]
- test: "find /var -delete"
  description: "match command with var directory"
  expect_ids: ["fs:delete_find_files"]
- test: "find /usr -delete"
  description: "match command with usr directory"
  expect_ids: ["fs:delete_find_files"]
- test: "find . -type f -name '*.log' -delete"
  description: "match command with multiple conditions"
  expect_ids: ["fs:delete_find_files"]
- test: "find / -type d -empty -delete"
  description: "match command with empty directory condition"
  expect_ids: ["fs:delete_find_files"]
- test: "find . -type f -size +100M -delete"
  description: "match command with size condition"
  expect_ids: ["fs:delete_find_files"]
- test: "find . -name 'my-delete-script' -print"
  description: "negative: -delete in filename should not match"
  expect_ids: []

# -- fs:encryption_operations --
- test: "cryptsetup luksFormat /dev/sda1"
  description: "match formatting LUKS partition"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup  luksFormat    /dev/sda1"
  description: "match formatting LUKS partition with spaves"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup open /dev/sda1 my_encrypted"
  description: "match opening encrypted device"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup close my_encrypted /dev/sda1"
  description: "match closing encrypted device"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup luksAddKey /dev/sda1"
  description: "match adding LUKS key"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup luksRemoveKey /dev/sda1"
  description: "match removing LUKS key"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup luksDump /dev/sda1"
  description: "match dumping LUKS header"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup resize my_encrypted /dev/sda1"
  description: "match resizing encrypted device"
  expect_ids: ["fs:encryption_operations"]
- test: "cryptsetup -v status my_encrypted"
  description: "should not match checking status"
  expect_ids: []
- test: "cryptsetup isLuks /dev/sda1"
  description: "match checking if LUKS"
  expect_ids: ["fs:encryption_operations"]

# -- fs:fdisk_disk_modify --
- test: "fdisk /dev/sda"
  description: "match interactive partition editor"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk  /dev/sda"
  description: "match interactive partition editor with spaces"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -l /dev/sda"
  description: "match listing partitions"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk  /dev/sda -l"
  description: "match listing partitions"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -w /dev/sda"
  description: "match writing changes"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -u /dev/sda"
  description: "match using sectors instead of cylinders"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -b 2048 /dev/sda"
  description: "match specifying sector size"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -c /dev/sda"
  description: "match disabling DOS compatibility mode"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -w always /dev/sda"
  description: "match writing changes without confirmation"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -l"
  description: "should not match listing all devices without modification"
  expect_ids: []
- test: "fdisk /tmp/test.img"
  description: "should not match regular file"
  expect_ids: []
- test: "fdisk   /dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk   -l   /dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "sudo fdisk /dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "sudo fdisk -l /dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -g /dev/sda"
  description: "match command with gpt option"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -s /dev/sda"
  description: "match command with size option"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -v /dev/sda"
  description: "match command with version option"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk /dev/sdb"
  description: "match command with second disk"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk /dev/mmcblk0"
  description: "match command with SD card"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk /dev/sda1"
  description: "match command with partition"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -w -u /dev/sda"
  description: "match command with multiple options"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -b 2048 -c /dev/sda"
  description: "match command with multiple options"
  expect_ids: ["fs:fdisk_disk_modify"]
- test: "fdisk -g -w /dev/sda"
  description: "match command with multiple options"
  expect_ids: ["fs:fdisk_disk_modify"]

# -- fs:filesystem_backup --
- test: "dump -0f /backup.dump /dev/sda1"
  description: "match creating filesystem dump"
  expect_ids: ["fs:filesystem_backup"]
- test: "dump  -0f  /backup.dump  /dev/sda1"
  description: "match creating filesystem dump with spaces"
  expect_ids: ["fs:filesystem_backup"]
- test: "restore -rf /backup.dump /dev/sda1"
  description: "match restoring from dump"
  expect_ids: ["fs:filesystem_backup"]
- test: "dump -0u /dev/sda1"
  description: "match updating dump"
  expect_ids: ["fs:filesystem_backup"]
- test: "dump -0f /backup.dump -b 1024 /dev/sda1"
  description: "match dump with block size"
  expect_ids: ["fs:filesystem_backup"]
- test: "restore -rf -b 1024 /backup.dump /dev/sda1"
  description: "match restore with block size"
  expect_ids: ["fs:filesystem_backup"]
- test: "dump -0f /backup.dump -z 9 /dev/sda1"
  description: "match compressed dump"
  expect_ids: ["fs:filesystem_backup"]
- test: "restore -rf -z /backup.dump /dev/sda1"
  description: "match compressed restore"
  expect_ids: ["fs:filesystem_backup"]
- test: "dump -0f /backup.dump /tmp/test.img"
  description: "should not match dumping regular file"
  expect_ids: []
- test: "restore -rf /backup.dump /tmp/test.img"
  description: "should not match restoring to regular file"
  expect_ids: []

# -- fs:flush_file_content --
- test: 'echo "test" > Cargo.toml'
  description: "flush content"
  expect_ids: ["fs:flush_file_content"]
- test: 'echo "test" > file.txt'
  description: "regex matches; PathExists filter is bypassed in this test (all paths exist)"
  expect_ids: ["fs:flush_file_content"]
- test: "cat file.old.txt > Cargo.toml"
  description: "flush content"
  expect_ids: ["fs:flush_file_content"]
- test: "cat file.old.txt > Cargo.toml"
  description: "flush content"
  expect_ids: ["fs:flush_file_content"]
- test: "cat  file.old.txt    >    Cargo.toml"
  description: "flush content with spaces"
  expect_ids: ["fs:flush_file_content"]
- test: 'cat "test" >> file.txt'
  description: "append redirect should not match (only single > triggers)"
  expect_ids: []
- test: "which cargo-tauri 2>/dev/null"
  description: "redirect stderr to /dev/null should not match"
  expect_ids: []
- test: "npx tauri --version 2>/dev/null"
  description: "redirect stderr to /dev/null should not match"
  expect_ids: []
- test: "echo test >/dev/null"
  description: "redirect stdout to /dev/null should not match"
  expect_ids: []
- test: "command -v foo &>/dev/null"
  description: "redirect all to /dev/null should not match"
  expect_ids: []

# -- fs:gdisk_disk_modify --
- test: "gdisk /dev/sda"
  description: "match interactive GPT partition editor"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk  /dev/sda"
  description: "match interactive GPT partition editor with spaces"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -l /dev/sda"
  description: "match listing GPT partitions"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w /dev/sda"
  description: "match writing GPT changes"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -o /dev/sda"
  description: "match creating new GPT partition table"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -r /dev/sda"
  description: "match recovery and transformation"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk    -v /dev/sda"
  description: "match verification"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -p /dev/sda"
  description: "match printing partition table"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -l"
  description: "should not match listing all devices without modification"
  expect_ids: []
- test: "gdisk /tmp/test.img"
  description: "should not match regular file"
  expect_ids: []
- test: "gdisk   -w   /dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "sudo gdisk /dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "sudo   gdisk   /dev/sda"
  description: "match command with sudo and extra spaces"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v /dev/sda"
  description: "match command with multiple flags"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -v -w /dev/sda"
  description: "match command with flags in different order"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk /dev/sda -w -v"
  description: "match command with flags after device"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --load-backup=backup.gpt /dev/sda"
  description: "match command with backup file"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --backup=backup.gpt /dev/sda"
  description: "match command with backup parameter"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -c /dev/sda"
  description: "match command with change partition type"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -d /dev/sda"
  description: "match command with delete partition"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -n /dev/sda"
  description: "match command with new partition"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk /dev/sdb"
  description: "match command with second disk"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk /dev/mmcblk0"
  description: "match command with SD card"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk /dev/sda1"
  description: "match command with partition"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --backup=backup.gpt --load-backup=backup.gpt /dev/sda"
  description: "match command with multiple backup parameters"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --new-table /dev/sda"
  description: "match command with new table parameter"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --clear /dev/sda"
  description: "match command with clear parameter"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v -d 1 /dev/sda"
  description: "match command with delete partition"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v -n 1 /dev/sda"
  description: "match command with new partition"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v -c 1 /dev/sda"
  description: "match command with change partition"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --verbose /dev/sda"
  description: "match command with verbose flag"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --debug /dev/sda"
  description: "match command with debug flag"
  expect_ids: ["fs:gdisk_disk_modify"]
- test: "gdisk -w -v --help /dev/sda"
  description: "match command with help flag"
  expect_ids: ["fs:gdisk_disk_modify"]

# -- fs:lvm_operations --
- test: "lvremove /dev/vg0/lv1"
  description: "match removing logical volume"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove /dev/sda1"
  description: "match removing physical volume"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove vg0"
  description: "match removing volume group"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove -f /dev/vg0/lv1"
  description: "match force removing logical volume"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove -ff /dev/sda1"
  description: "match force removing physical volume"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove -f vg0"
  description: "match force removing volume group"
  expect_ids: ["fs:lvm_operations"]
- test: "lvcreate -L 10G vg0"
  description: "should not match creating logical volume"
  expect_ids: []
- test: "pvcreate /dev/sda1"
  description: "should not match creating physical volume"
  expect_ids: []
- test: "vgcreate vg0 /dev/sda1"
  description: "should not match creating volume group"
  expect_ids: []
- test: "lvremove   /dev/vg0/lv1"
  description: "match command with extra spaces"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove   /dev/sda1"
  description: "match command with extra spaces"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove   vg0"
  description: "match command with extra spaces"
  expect_ids: ["fs:lvm_operations"]
- test: "sudo lvremove /dev/vg0/lv1"
  description: "match command with sudo"
  expect_ids: ["fs:lvm_operations"]
- test: "sudo pvremove /dev/sda1"
  description: "match command with sudo"
  expect_ids: ["fs:lvm_operations"]
- test: "sudo vgremove vg0"
  description: "match command with sudo"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove --force /dev/vg0/lv1"
  description: "match command with long force flag"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove --force --force /dev/sda1"
  description: "match command with long force flags"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove --force vg0"
  description: "match command with long force flag"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove /dev/mapper/vg0-lv1"
  description: "match command with mapper path"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove /dev/sdb1"
  description: "match command with different disk"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove vg1"
  description: "match command with different volume group"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove -y /dev/vg0/lv1"
  description: "match command with yes option"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove -y /dev/sda1"
  description: "match command with yes option"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove -y vg0"
  description: "match command with yes option"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove /dev/vg0/lv2"
  description: "match command with different logical volume"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove /dev/sdc1"
  description: "match command with third disk"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove vg2"
  description: "match command with second volume group"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove -v /dev/vg0/lv1"
  description: "match command with verbose option"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove -v /dev/sda1"
  description: "match command with verbose option"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove -v vg0"
  description: "match command with verbose option"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove -f -y /dev/vg0/lv1"
  description: "match command with multiple options"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove -ff -y /dev/sda1"
  description: "match command with multiple options"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove -f -y vg0"
  description: "match command with multiple options"
  expect_ids: ["fs:lvm_operations"]
- test: "lvremove /dev/vg0/lv1 /dev/vg0/lv2"
  description: "match command with multiple volumes"
  expect_ids: ["fs:lvm_operations"]
- test: "pvremove /dev/sda1 /dev/sdb1"
  description: "match command with multiple physical volumes"
  expect_ids: ["fs:lvm_operations"]
- test: "vgremove vg0 vg1"
  description: "match command with multiple volume groups"
  expect_ids: ["fs:lvm_operations"]

# -- fs:mkfs_format --
- test: "mkfs.ext4 /dev/sda1"
  description: "match formatting a partition with ext4"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4      /dev/sda1"
  description: "match formatting a partition with ext4 with spaces"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext3 /dev/sdb2"
  description: "match formatting a partition with ext3"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs -t ext4 /dev/sda"
  description: "match formatting entire disk with type parameter"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.fat /dev/mmcblk0p1"
  description: "match formatting SD card partition with FAT"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.xfs /dev/sdc"
  description: "match formatting disk with XFS"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.btrfs /dev/mmcblk0"
  description: "match formatting entire SD card with btrfs"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs /tmp/test.img"
  description: "should not match formatting a regular file"
  expect_ids: []
- test: "mkfs.ext4 /mnt/external"
  description: "should not match formatting a mount point"
  expect_ids: []
- test: "mkfs.ext4"
  description: "should not match without device parameter"
  expect_ids: []
- test: "mkfs.ext4   /dev/sda1"
  description: "match command with extra spaces"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs   -t   ext4   /dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:mkfs_format"]
- test: "sudo mkfs.ext4 /dev/sda1"
  description: "match command with sudo"
  expect_ids: ["fs:mkfs_format"]
- test: "sudo mkfs -t ext4 /dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4 -F /dev/sda1"
  description: "match command with force flag"
  expect_ids: []
- test: "mkfs -t ext4 -F /dev/sda"
  description: "match command with force flag"
  expect_ids: []
- test: "mkfs.ext4 -L mylabel /dev/sda1"
  description: "match command with label"
  expect_ids: []
- test: "mkfs.ext4 /dev/sda2"
  description: "match command with different partition"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4 /dev/sdb"
  description: "match command with different disk"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4 /dev/mmcblk0p2"
  description: "match command with different SD card partition"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ntfs /dev/sda1"
  description: "match command with NTFS filesystem"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs -t ntfs /dev/sda"
  description: "match command with NTFS filesystem type"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.exfat /dev/sda1"
  description: "match command with exFAT filesystem"
  expect_ids: []
- test: "mkfs.ext4 -c /dev/sda1"
  description: "match command with check option"
  expect_ids: []
- test: "mkfs.ext4 -n /dev/sda1"
  description: "match command with dry run option"
  expect_ids: []
- test: "mkfs.ext4 -q /dev/sda1"
  description: "match command with quiet option"
  expect_ids: []
- test: "mkfs.ext4 -F -L mylabel -c /dev/sda1"
  description: "match command with multiple options"
  expect_ids: []
- test: "mkfs -t ext4 -F -L mylabel -c /dev/sda"
  description: "match command with multiple options"
  expect_ids: []
- test: "mkfs.ext4 /dev/sda3"
  description: "match command with third partition"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4 /dev/sdc1"
  description: "match command with third disk"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4 /dev/mmcblk0p3"
  description: "match command with third SD card partition"
  expect_ids: ["fs:mkfs_format"]
- test: "mkfs.ext4 -b 4096 /dev/sda1"
  description: "match command with block size"
  expect_ids: []
- test: "mkfs.ext4 -i 4096 /dev/sda1"
  description: "match command with inode size"
  expect_ids: []
- test: "mkfs.ext4 -m 5 /dev/sda1"
  description: "match command with reserved blocks percentage"
  expect_ids: []

# -- fs:mount_operations --
- test: "mount /dev/sda1 /mnt"
  description: "match basic mount operation"
  expect_ids: ["fs:mount_operations"]
- test: "mount  /dev/sda1    /mnt"
  description: "match basic mount operation with spaces"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o remount,rw /dev/sda1"
  description: "match remounting with options"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o noatime /dev/sdb1 /data"
  description: "match mounting with specific options"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o loop /dev/sda1 /mnt"
  description: "match loopback mounting"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o defaults /dev/sda1 /mnt"
  description: "match mounting with defaults"
  expect_ids: ["fs:mount_operations"]
- test: "mount -t ext4 /dev/sda1 /mnt"
  description: "match mounting with filesystem type"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o remount,ro /dev/sda1"
  description: "match remounting as read-only"
  expect_ids: ["fs:mount_operations"]
- test: "mount -a"
  description: "should not match mounting all from fstab"
  expect_ids: []
- test: "mount /tmp/test.img /mnt"
  description: "should not match mounting regular file"
  expect_ids: []
- test: "mount   -o   remount,rw   /dev/sda1"
  description: "match command with extra spaces"
  expect_ids: ["fs:mount_operations"]
- test: "sudo mount /dev/sda1 /mnt"
  description: "match command with sudo"
  expect_ids: ["fs:mount_operations"]
- test: "sudo   mount   -o   remount,rw   /dev/sda1"
  description: "match command with sudo and extra spaces"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o remount,rw -t ext4 /dev/sda1"
  description: "match command with multiple flags"
  expect_ids: ["fs:mount_operations"]
- test: "mount -t ext4 -o remount,rw /dev/sda1"
  description: "match command with flags in different order"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o remount,rw,noatime /dev/sda1"
  description: "match command with multiple mount options"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o noatime,remount,rw /dev/sda1"
  description: "match command with mount options in different order"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o remount,rw,exec /dev/sda1"
  description: "match command with exec option"
  expect_ids: ["fs:mount_operations"]
- test: "mount -o remount,rw,noexec /dev/sda1"
  description: "match command with noexec option"
  expect_ids: ["fs:mount_operations"]

# -- fs:move_to_dev_null --
- test: "mv Cargo.toml /dev/null"
  description: "match command"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv ./ /dev/null"
  description: "match command"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv   ./    /dev/null"
  description: "match command with spaces"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv ."
  description: "match command"
  expect_ids: []
- test: "mv /dev/null"
  description: "missing argument"
  expect_ids: []
- test: "mv   Cargo.toml   /dev/null"
  description: "match command with extra spaces"
  expect_ids: ["fs:move_to_dev_null"]
- test: "sudo mv Cargo.toml /dev/null"
  description: "match command with sudo"
  expect_ids: ["fs:move_to_dev_null"]
- test: "sudo   mv   Cargo.toml   /dev/null"
  description: "match command with sudo and extra spaces"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv file1 file2 /dev/null"
  description: "match command with multiple files"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv file1 /dev/null file2"
  description: "match command with files in different order"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv -f Cargo.toml /dev/null"
  description: "match command with force flag"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv --force Cargo.toml /dev/null"
  description: "match command with long force flag"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv ../file /dev/null"
  description: "match command with parent directory"
  expect_ids: ["fs:move_to_dev_null"]
- test: "mv ~/file /dev/null"
  description: "match command with home directory"
  expect_ids: ["fs:move_to_dev_null"]

# -- fs:parted_disk_modify --
- test: "parted /dev/sda mklabel gpt"
  description: "match creating new GPT partition table"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted    /dev/sda    mklabel gpt"
  description: "match creating new GPT partition table with spaces"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sdb mkpart primary"
  description: "match creating new partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda rm 1"
  description: "match removing partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda print"
  description: "match listing partitions"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda resizepart 1 100%"
  description: "match resizing partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda toggle 1 boot"
  description: "match toggling partition flags"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda"
  description: "match interactive mode"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted -l"
  description: "should not match listing all devices without modification"
  expect_ids: []
- test: "parted /tmp/test.img"
  description: "should not match regular file"
  expect_ids: []
- test: "parted   /dev/sda   mklabel   gpt"
  description: "match command with extra spaces"
  expect_ids: ["fs:parted_disk_modify"]
- test: "sudo parted /dev/sda mklabel gpt"
  description: "match command with sudo"
  expect_ids: ["fs:parted_disk_modify"]
- test: "sudo   parted   /dev/sda   mklabel   gpt"
  description: "match command with sudo and extra spaces"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mklabel gpt --script"
  description: "match command with script mode"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted --script /dev/sda mklabel gpt"
  description: "match command with script mode in different position"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mkpart primary ext4 0% 100%"
  description: "match command with full partition parameters"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mkpart primary 0% 100% ext4"
  description: "match command with parameters in different order"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/mmcblk0 mklabel gpt"
  description: "match command with SD card device"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda1 mklabel gpt"
  description: "match command with partition device"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda move 1 1000 2000"
  description: "match command with move partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda name 1 boot"
  description: "match command with name partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda set 1 lvm on"
  description: "match command with set partition flag"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sdc mklabel gpt"
  description: "match command with third disk"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/mmcblk0p1 mklabel gpt"
  description: "match command with SD card partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda2 mklabel gpt"
  description: "match command with second partition"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted -a optimal /dev/sda mklabel gpt"
  description: "match command with alignment option"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted -s /dev/sda mklabel gpt"
  description: "match command with silent mode"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted --version /dev/sda mklabel gpt"
  description: "match command with version option"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mklabel gpt mkpart primary ext4 0% 100%"
  description: "match command with multiple operations"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda rm 1 rm 2"
  description: "match command with multiple remove operations"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mkpart primary ext4 0% 50% mkpart primary ext4 50% 100%"
  description: "match command with multiple create operations"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mkpart primary ext4 0% 50%"
  description: "match command with percentage parameters"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mkpart primary ext4 0 1000"
  description: "match command with size parameters"
  expect_ids: ["fs:parted_disk_modify"]
- test: "parted /dev/sda mkpart primary ext4 1000 2000"
  description: "match command with start and end parameters"
  expect_ids: ["fs:parted_disk_modify"]

# -- fs:partprobe_disk_update --
- test: "partprobe /dev/sda"
  description: "match probing partition table changes"
  expect_ids: ["fs:partprobe_disk_update"]
- test: "partprobe -s /dev/sda"
  description: "match showing summary of changes"
  expect_ids: ["fs:partprobe_disk_update"]
- test: "partprobe -d /dev/sda"
  description: "match dry run mode"
  expect_ids: ["fs:partprobe_disk_update"]
- test: "partprobe -w /dev/sda"
  description: "match waiting for completion"
  expect_ids: ["fs:partprobe_disk_update"]
- test: "partprobe -s"
  description: "should not match probing all devices without modification"
  expect_ids: []
- test: "partprobe /tmp/test.img"
  description: "should not match regular file"
  expect_ids: []

# -- fs:recursively_chmod --
- test: "chmod -R /"
  description: "change root path permissions"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod --recursive /"
  description: "change root path permissions"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R *"
  description: "change root path permissions"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R ."
  description: "change current directory permissions"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R .."
  description: "change parent folder"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R ..."
  description: "change parent folder"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod file.txt"
  description: "change file permissions"
  expect_ids: ["fs-strict:change_permissions"]
- test: "chmod   -R   /"
  description: "match command with extra spaces"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod   --recursive   /"
  description: "match command with extra spaces"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "sudo chmod -R /"
  description: "match command with sudo"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "sudo chmod --recursive /"
  description: "match command with sudo"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R --verbose /"
  description: "match command with verbose flag"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R --changes /"
  description: "match command with changes flag"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R --quiet /"
  description: "match command with quiet flag"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R /home"
  description: "match command with home directory"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R /var"
  description: "match command with var directory"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R /usr"
  description: "match command with usr directory"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R 777 /"
  description: "match command with octal mode"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R a+rwx /"
  description: "match command with symbolic mode"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]
- test: "chmod -R u=rwx,g=rx,o=rx /"
  description: "match command with detailed symbolic mode"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

# -- fs:recursively_delete --
- test: "rm -rf /"
  description: "delete root path"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -r /"
  description: "delete root path"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf *"
  description: "delete all files in current folder"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -fr ."
  description: "delete parent folder"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf .."
  description: "delete parent folder"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf /ffff"
  description: "regex matches; PathExists filter is bypassed in this test (all paths exist)"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rmm -rf /"
  description: "folder not found"
  expect_ids: []
- test: "rm -Rf /"
  description: "Handle capital R"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -FR /"
  description: "fs-strict:any_deletion still matches (flag group is optional)"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm   -rf   /"
  description: "match command with extra spaces"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm   -r   /"
  description: "match command with extra spaces"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "sudo rm -rf /"
  description: "match command with sudo"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "sudo rm -r /"
  description: "match command with sudo"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf --force /"
  description: "match command with long force flag"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -r --force /"
  description: "match command with long force flag"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rfv /"
  description: "-rfv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf --verbose /"
  description: "match command with long verbose flag"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf --preserve-root /"
  description: "match command with preserve-root flag"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -r -f /"
  description: "match separate -r and -f flags"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -f *"
  description: "match force delete all files"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf / node_modules package-lock.json .next"
  description: "/ first with more args following"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf node_modules / package-lock.json .next"
  description: "/ in middle of args"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf node_modules package-lock.json / .next"
  description: "/ near-last in args"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf node_modules package-lock.json .next /"
  description: "/ last with other args before"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf * node_modules"
  description: "* first with more args following"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf node_modules * package-lock.json"
  description: "* in middle of args"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf node_modules . package-lock.json"
  description: ". in middle of args"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf node_modules .. package-lock.json"
  description: ".. in middle of args"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]
- test: "rm -rf /usr/local"
  description: "full path, / not standalone — should not match recursively_delete"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -rf ./node_modules"
  description: ". followed by /, not standalone — should not match recursively_delete"
  expect_ids: ["fs-strict:any_deletion"]

# -- fs:sfdisk_disk_modify --
- test: "sfdisk /dev/sda"
  description: "match interactive partition editor"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -d /dev/sda > backup.txt"
  description: "match dumping partition table (also matches flush_file_content via >)"
  expect_ids:
    ["fs:fdisk_disk_modify", "fs:flush_file_content", "fs:sfdisk_disk_modify"]
- test: "sfdisk /dev/sda < backup.txt"
  description: "match restoring partition table"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -l /dev/sda"
  description: "match listing partitions"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -f /dev/sda"
  description: "match forcing write"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -N 1 /dev/sda"
  description: "match modifying specific partition"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk --delete /dev/sda"
  description: "match deleting all partitions"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -l"
  description: "should not match listing all devices without modification"
  expect_ids: []
- test: "sfdisk /tmp/test.img"
  description: "should not match regular file"
  expect_ids: []
- test: "sfdisk   /dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk   -l   /dev/sda"
  description: "match command with extra spaces"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sudo sfdisk /dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sudo sfdisk -l /dev/sda"
  description: "match command with sudo"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -g /dev/sda"
  description: "match command with gpt option"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -s /dev/sda"
  description: "match command with size option"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -v /dev/sda"
  description: "match command with version option"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk /dev/sdb"
  description: "match command with second disk"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk /dev/mmcblk0"
  description: "match command with SD card"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk /dev/sda1"
  description: "match command with partition"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk --delete --force /dev/sda"
  description: "match command with multiple options"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -N 1 -f /dev/sda"
  description: "match command with multiple options"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]
- test: "sfdisk -d -f /dev/sda"
  description: "match command with multiple options"
  expect_ids: ["fs:fdisk_disk_modify", "fs:sfdisk_disk_modify"]

# -- fs-strict:any_deletion --
- test: "rm Cargo.toml"
  description: "match command by finding existing file"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm src"
  description: "match command by finding folder"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -rf src"
  description: "match command by finding folder with flags"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -r src"
  description: "match command by finding folder with flags"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -fr src"
  description: "match command by finding folder with flags"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -f src"
  description: "match command by finding folder with flags"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rmm test.txt"
  description: "invalid rm name"
  expect_ids: []
- test: "rm"
  description: "without arguments"
  expect_ids: []
- test: "rm -R src"
  description: "with capital r"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -Rf src"
  description: "with capital r"
  expect_ids: ["fs-strict:any_deletion"]
- test: "rm -fR src"
  description: "with capital r"
  expect_ids: ["fs-strict:any_deletion"]

# -- fs-strict:change_permissions --
- test: "chmod -R"
  description: "match command"
  expect_ids: ["fs-strict:change_permissions"]
- test: "chmod"
  description: "chmod without any data"
  expect_ids: []
- test: "chmodd"
  description: "chmod name is incurrent"
  expect_ids: []

# -- fs-strict:folder_deletion --
- test: "rmdir TestFolder"
  description: "match command by finding existing file"
  expect_ids: ["fs-strict:folder_deletion"]
- test: "rmdir -pv TestFolder"
  description: "match command with flags"
  expect_ids: ["fs-strict:folder_deletion"]
- test: "rmdir    -pv    TestFolder"
  description: "match command with spaces"
  expect_ids: ["fs-strict:folder_deletion"]

# -- fs:recursively_delete — combined/long-form flag coverage --
- test: "rm -Rfv /"
  description: "-Rfv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -frv /"
  description: "-frv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -rvf /"
  description: "-rvf now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -vrf /"
  description: "-vrf now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -vRf /"
  description: "-vRf now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -rv /"
  description: "-rv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -Rv /"
  description: "-Rv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -fv /"
  description: "-fv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -vr /"
  description: "-vr now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -vf /"
  description: "-vf now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm --recursive /"
  description: "--recursive now matches long flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm --recursive -f /"
  description: "--recursive -f now matches long flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm --recursive --force /"
  description: "--recursive --force now matches long flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -f --recursive /"
  description: "-f matches first slot, --recursive caught by extra-args group"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm -r -f -v /"
  description: "three separate flags, only 2 slots in regex"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "rm / -rf"
  description: "BUG: target before flags, regex requires flags before target"
  expect_ids: ["fs-strict:any_deletion"]

- test: "sudo rm -rfv /"
  description: "sudo with -rfv now matches combined flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

- test: "sudo rm --recursive /"
  description: "sudo with --recursive now matches long flag pattern"
  expect_ids: ["fs-strict:any_deletion", "fs:recursively_delete"]

# -- fs:recursively_chmod — combined flags and ordering --
- test: "chmod -Rv /"
  description: "-Rv now matches combined flag pattern"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

- test: "chmod -Rc /"
  description: "-Rc now matches combined flag pattern"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

- test: "chmod -vR /"
  description: "-vR now matches combined flag pattern"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

- test: "chmod 777 -R /"
  description: "mode before -R flag now matches"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

- test: "chmod a+rwx -R /"
  description: "symbolic mode before -R now matches"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

- test: "chmod 777 --recursive /"
  description: "mode before --recursive now matches"
  expect_ids: ["fs-strict:change_permissions", "fs:recursively_chmod"]

# -- fs:mkfs_format — NVMe and vfat --
- test: "mkfs.ext4 /dev/nvme0n1p1"
  description: "NVMe partition device now matches"
  expect_ids: ["fs:mkfs_format"]

- test: "mkfs.ext4 /dev/nvme0n1"
  description: "NVMe disk device now matches"
  expect_ids: ["fs:mkfs_format"]

- test: "mkfs.vfat /dev/sda1"
  description: ".vfat filesystem type now matches"
  expect_ids: ["fs:mkfs_format"]

- test: "mkfs.ext2 /dev/sda1"
  description: "ext2 matches ext[2-4]"
  expect_ids: ["fs:mkfs_format"]

# -- NVMe device coverage for disk-related checks --
- test: "dd if=image.img of=/dev/nvme0n1"
  description: "NVMe device now matches dd_block_device"
  expect_ids: ["fs:dd_block_device"]

- test: "fdisk /dev/nvme0n1"
  description: "NVMe device now matches fdisk"
  expect_ids: ["fs:fdisk_disk_modify"]

- test: "parted /dev/nvme0n1 mklabel gpt"
  description: "NVMe device now matches parted"
  expect_ids: ["fs:parted_disk_modify"]

- test: "gdisk /dev/nvme0n1"
  description: "NVMe device now matches gdisk"
  expect_ids: ["fs:gdisk_disk_modify"]

- test: "mount /dev/nvme0n1p1 /mnt"
  description: "NVMe device now matches mount"
  expect_ids: ["fs:mount_operations"]

- test: "cryptsetup luksFormat /dev/nvme0n1p1"
  description: "NVMe device now matches encryption operations"
  expect_ids: ["fs:encryption_operations"]

- test: "blockdev --setro /dev/nvme0n1"
  description: "NVMe device now matches blockdev"
  expect_ids: ["fs:blockdev_disk_modify"]

# -- fs:move_to_dev_null — multiple flags --
- test: "mv -f -v file.txt /dev/null"
  description: "-f matches short flag slot, -v captured as filename arg"
  expect_ids: ["fs:move_to_dev_null"]

- test: "mv --force --verbose file.txt /dev/null"
  description: "--force matches long flag slot, --verbose captured as filename arg"
  expect_ids: ["fs:move_to_dev_null"]

- test: "mv -fv file.txt /dev/null"
  description: "-fv as single combined flag"
  expect_ids: ["fs:move_to_dev_null"]

# -- fs:rsync_delete --
- test: "rsync -avz --delete /src/ /dest/"
  description: "match rsync with --delete"
  expect_ids: ["fs:rsync_delete"]
- test: "rsync --delete -az /src/ /dest/"
  description: "match rsync with --delete before other flags"
  expect_ids: ["fs:rsync_delete"]
- test: "rsync -avz --delete --dry-run /src/ /dest/"
  description: "negative: rsync with --dry-run should not match"
  expect_ids: []
- test: "rsync -avzn --delete /src/ /dest/"
  description: "BUG: -n inside combined flags not detected by substring NotContains filter"
  expect_ids: ["fs:rsync_delete"]
- test: "rsync -n --delete /src/ /dest/"
  description: "negative: rsync with standalone -n should not match"
  expect_ids: []
- test: "rsync -avz /src/ /dest/"
  description: "negative: rsync without --delete should not match"
  expect_ids: []

# -- fs:recursively_chown --
- test: "chown -R root:root /"
  description: "match recursive chown on root"
  expect_ids: ["fs:recursively_chown"]
- test: "chown -R user:group *"
  description: "match recursive chown on wildcard"
  expect_ids: ["fs:recursively_chown"]
- test: "chown -R user:group ."
  description: "match recursive chown on current dir"
  expect_ids: ["fs:recursively_chown"]
- test: "chown --recursive user:group /"
  description: "match chown --recursive long form on root"
  expect_ids: ["fs:recursively_chown"]
- test: "chown user:group file.txt"
  description: "negative: chown without -R should not match"
  expect_ids: []