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