forked from igosnusantara/fedorautils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
35 lines (31 loc) · 936 Bytes
/
config.json
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
{
"malicious": {
"rmrf": {
"variations": [
"^rm \\-rf \\.$", "^rm \\-rf \\/$", "^rm \\-rf \\*$",
"^rm \\-r \\.\\[\\^\\.\\]\\*", "^rm.*\\-\\-no\\-preserve\\-root",
"^echo cm0gLXJmIH4vKg== \\| base64 \\-d", "python \\-c.*sn!\\.sg!\\+"
],
"description": "delete all files"
},
"void": {
"variations": [ "^mv .* \/dev\/null", "^rm \\-?\\S+ \\/\\w\\/?\\w?" ],
"description": "delete important files"
},
"dd": {
"variations": [ ".* > \\/dev\\/sda", "dd if=.* of=\\/dev\\/sda", "mkfs\\..* \\/dev\\/sda" ],
"description": "overwrite or wipe hard disk"
},
"panic": {
"variations": [
"echo 1 > \\/proc\\/sys\\/kernel\\/panic", "cat \\/dev\\/zero > \\/dev\\/mem",
"dd if=\\/dev\\/random of=\\/dev\\/port", "cat \\/dev\\/port"
],
"description": "cause kernel panic"
},
"forkbomb": {
"variations": [ ":\\(\\)\\{:\\|:&\\};:" ],
"description": "freeze the system"
}
}
}