blob: d23bdb2f407d05817f09c248285af1eb2da05adf (
plain)
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
|
A simple sudoers rule should not allow the user to set the cwd:
Parses OK
Entries for user root:
ALL = /bin/ls
host allowed
runas allowed
cmnd allowed
User root is not allowed to change directory to /
Password required
Command denied
User cannot override the sudoers cwd:
Parses OK
Entries for user root:
ALL = CWD=/some/where/else /bin/ls
host allowed
runas allowed
cmnd allowed
User root is not allowed to change directory to /
Password required
Command denied
User can set cwd if sudoers rule sets cwd to '*':
Parses OK
Entries for user root:
ALL = CWD=* /bin/ls
host allowed
runas allowed
cmnd allowed
Password required
Command allowed
User can set cwd runcwd Defaults is '*':
Parses OK
Entries for user root:
ALL = /bin/ls
host allowed
runas allowed
cmnd allowed
Password required
Command allowed
|