File size: 2,016 Bytes
fc93158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "cases": [
    {
      "id": "simple-pipeline",
      "command": "echo ok | jq .foo",
      "ok": true,
      "executables": ["echo", "jq"]
    },
    {
      "id": "chained-commands",
      "command": "ls && rm -rf /tmp/openclaw-allowlist",
      "ok": true,
      "executables": ["ls", "rm"]
    },
    {
      "id": "quoted-chain-operators-remain-literal",
      "command": "echo \"a && b\"",
      "ok": true,
      "executables": ["echo"]
    },
    {
      "id": "reject-command-substitution-unquoted",
      "command": "echo $(whoami)",
      "ok": false,
      "executables": []
    },
    {
      "id": "reject-command-substitution-double-quoted",
      "command": "echo \"output: $(whoami)\"",
      "ok": false,
      "executables": []
    },
    {
      "id": "allow-command-substitution-literal-in-single-quotes",
      "command": "echo 'output: $(whoami)'",
      "ok": true,
      "executables": ["echo"]
    },
    {
      "id": "allow-escaped-command-substitution-double-quoted",
      "command": "echo \"output: \\$(whoami)\"",
      "ok": true,
      "executables": ["echo"]
    },
    {
      "id": "reject-backticks-unquoted",
      "command": "echo `id`",
      "ok": false,
      "executables": []
    },
    {
      "id": "reject-backticks-double-quoted",
      "command": "echo \"output: `id`\"",
      "ok": false,
      "executables": []
    },
    {
      "id": "reject-process-substitution-unquoted-input",
      "command": "cat <(echo ok)",
      "ok": false,
      "executables": []
    },
    {
      "id": "reject-process-substitution-unquoted-output",
      "command": "echo >(cat)",
      "ok": false,
      "executables": []
    },
    {
      "id": "allow-process-substitution-literal-double-quoted-input",
      "command": "echo \"<(echo ok)\"",
      "ok": true,
      "executables": ["echo"]
    },
    {
      "id": "allow-process-substitution-literal-double-quoted-output",
      "command": "echo \">(cat)\"",
      "ok": true,
      "executables": ["echo"]
    }
  ]
}