-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathchmod.cgi
98 lines (86 loc) · 3.11 KB
/
chmod.cgi
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
#!/usr/bin/perl
require './filemin-lib.pl';
use lib './lib';
&ReadParse();
get_paths();
print_ajax_header();
my @errors;
my $permissions = $in{'permissions'};
# Fix chmod setuid/setgid to 0 for directories
my $permissions = oct_to_symbolic($permissions);
# Selected directories and files only
if($in{'applyto'} eq '1') {
foreach $name (split(/\0/, $in{'name'})) {
next if $name eq '';
$name =~ s/\.\.//g;
$name = &simplify_path($name);
if (!$name || system_logged("chmod ".quotemeta($permissions)." ".quotemeta("$cwd/$name")) != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
}
}
# Selected files and directories and files in selected directories
if($in{'applyto'} eq '2') {
foreach $name (split(/\0/, $in{'name'})) {
next if $name eq '';
$name =~ s/\.\.//g;
$name = &simplify_path($name);
if(!$name || system_logged("chmod ".quotemeta($permissions)." ".quotemeta("$cwd/$name")) != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
if($name && -d "$cwd/$name") {
if(system_logged("find ".quotemeta("$cwd/$name")." -maxdepth 1 -type f -exec chmod ".quotemeta($permissions)." {} \\;") != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
}
}
}
# All (recursive)
if($in{'applyto'} eq '3') {
foreach $name (split(/\0/, $in{'name'})) {
next if $name eq '';
$name =~ s/\.\.//g;
$name = &simplify_path($name);
if(!$name || system_logged("chmod -R ".quotemeta($permissions)." ".quotemeta("$cwd/$name")) != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
}
}
# Selected files and files under selected directories and subdirectories
if($in{'applyto'} eq '4') {
foreach $name (split(/\0/, $in{'name'})) {
next if $name eq '';
$name =~ s/\.\.//g;
$name = &simplify_path($name);
if($name && -f "$cwd/$name") {
if(system_logged("chmod ".quotemeta($permissions)." ".quotemeta("$cwd/$name")) != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
} else {
if(!$name || system_logged("find ".quotemeta("$cwd/$name")." -type f -exec chmod ".quotemeta($permissions)." {} \\;") != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
}
}
}
# Selected directories and subdirectories
if($in{'applyto'} eq '5') {
foreach $name (split(/\0/, $in{'name'})) {
next if $name eq '';
$name =~ s/\.\.//g;
$name = &simplify_path($name);
if($name && -d "$cwd/$name") {
if(system_logged("chmod ".quotemeta($permissions)." ".quotemeta("$cwd/$name")) != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
if(system_logged("find ".quotemeta("$cwd/$name")." -type d -exec chmod ".quotemeta($permissions)." {} \\;") != 0) {
push @errors, "$name - $text{'error_chmod'}: $?";
}
}
}
}
if (scalar(@errors) > 0) {
print status('error', \@errors);
} else {
print status('success', 1);
}