晋太元中,武陵人捕鱼为业。缘溪行,忘路之远近。忽逢桃花林,夹岸数百步,中无杂树,芳草鲜美,落英缤纷。渔人甚异之,复前行,欲穷其林。 林尽水源,便得一山,山有小口,仿佛若有光。便舍船,从口入。初极狭,才通人。复行数十步,豁然开朗。土地平旷,屋舍俨然,有良田、美池、桑竹之属。阡陌交通,鸡犬相闻。其中往来种作,男女衣着,悉如外人。黄发垂髫,并怡然自乐。 见渔人,乃大惊,问所从来。具答之。便要还家,设酒杀鸡作食。村中闻有此人,咸来问讯。自云先世避秦时乱,率妻子邑人来此绝境,不复出焉,遂与外人间隔。问今是何世,乃不知有汉,无论魏晋。此人一一为具言所闻,皆叹惋。余人各复延至其家,皆出酒食。停数日,辞去。此中人语云:“不足为外人道也。”(间隔 一作:隔绝) 既出,得其船,便扶向路,处处志之。及郡下,诣太守,说如此。太守即遣人随其往,寻向所志,遂迷,不复得路。 南阳刘子骥,高尚士也,闻之,欣然规往。未果,寻病终。后遂无问津者。
|
Server : Apache System : Linux srv.rainic.com 4.18.0-553.47.1.el8_10.x86_64 #1 SMP Wed Apr 2 05:45:37 EDT 2025 x86_64 User : rainic ( 1014) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /proc/thread-self/root/scripts/ |
Upload File : |
#!/usr/local/cpanel/3rdparty/bin/perl
# cpanel - scripts/fix_addon_permissions Copyright 2022 cPanel, L.L.C.
# All rights reserved.
# copyright@cpanel.net http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited
package scripts::fix_addon_permissions;
use strict;
use warnings;
use Cpanel ();
use Cpanel::AccessIds ();
use Cpanel::cPAddons::File::Perms ();
use Cpanel::cPAddons::Instances ();
use Cpanel::cPAddons::Module ();
use Getopt::Long ();
use Cpanel::Imports;
exit run( \@ARGV ) unless caller;
sub run {
my ($args) = @_;
my $opts = {
fix => 0,
instances => [],
user => '',
verbose => 0,
help => 0,
perms_run_as_user => 0600,
perms_run_as_nobody => 0644,
};
Getopt::Long::GetOptionsFromArray(
$args,
'fix!' => \$opts->{fix},
'user:s' => \$opts->{user},
'verbose' => \$opts->{verbose},
'help' => \$opts->{help},
);
if ( $opts->{help} ) {
print_help();
return 0;
}
if ( $> != 0 ) { # root
# Regular users cant choose a user to set.
$opts->{user} = '';
}
if ( !$opts->{user} ) {
if ( $> == 0 ) { # root
print STDERR locale()->maketext('You did not provide a user.') . "\n";
return 1;
}
my @user = getpwuid($>);
$opts->{user} = $user[0];
$opts->{homedir} = $user[7];
}
else {
my @user = getpwnam( $opts->{user} );
$opts->{homedir} = $user[7];
}
if ( !$opts->{user} ) {
print STDERR locale()->maketext('You did not provide a user or the requested user does not exist.') . "\n";
return 1;
}
$Cpanel::user = $opts->{user};
my $webserver_runs_as_user = Cpanel::cPAddons::File::Perms::runs_as_user();
if ( !$webserver_runs_as_user ) {
print STDERR locale()->maketext('The web server does not run scripts as the script owner. The system must set the file permission on this application more permissively. This can result in security issues with this application on shared servers.') . "\n";
}
else {
print STDOUT locale()->maketext('The web server runs scripts as the script owner. The system can install the application with safe file permissions.') . "\n"
if $opts->{verbose};
}
if ( $opts->{fix} ) {
my $homedir = $opts->{homedir};
my @modules = get_installed_modules($homedir);
for my $module (@modules) {
process_module( $opts, $module, $webserver_runs_as_user );
}
}
return 0;
}
sub process_module {
my ( $opts, $module, $webserver_runs_as_user ) = @_;
if ( $> == 0 ) { # root
return Cpanel::AccessIds::do_as_user_with_exception(
$opts->{user},
sub {
process_module_as_user( $opts, $module, $webserver_runs_as_user );
}
);
}
else {
return process_module_as_user( $opts, $module, $webserver_runs_as_user );
}
}
sub process_module_as_user {
my ( $opts, $module, $webserver_runs_as_user ) = @_;
my $res = get_instances_as_user( $opts->{user}, $opts->{homedir}, $module );
if ( $res->{error} ) {
print STDERR $res->{error};
return 1;
}
$opts->{instances} = [ values %{ $res->{instances} } ] || [];
if ( !@{ $opts->{instances} } ) {
print STDOUT locale()->maketext('The user has not installed any [asis,cPAddons].') . "\n";
return 0;
}
for my $instance ( @{ $opts->{instances} } ) {
next if ( $instance->{registry} !~ m/^\Q$module\E./ );
if ( $opts->{verbose} ) {
print STDERR locale()->maketext( 'Processing instance: “[_1]” module: “[_2]” …', $instance->{registry}, $module ) . "\n";
}
my $mod = $instance->{addon};
my $module_data = Cpanel::cPAddons::Module::get_module_data($mod);
if ( !$module_data ) {
print STDERR locale()->maketext('The system could not load the “[_1]” module. It may be damaged or not installed.');
next;
}
my $info_hr = $module_data->{meta};
if ( !$info_hr->{security} || ref $info_hr->{security} ne 'ARRAY' ) {
print STDOUT locale()->maketext('The module does not contain any security rules, skipping …') . "\n"
if $opts->{verbose};
next;
}
my @measures = grep { $_->{name} eq 'process_config_file_permissions' } @{ $info_hr->{security} };
if ( !@measures ) {
print STDOUT locale()->maketext('The module does not contain a process_config_file_permission policy, skipping …') . "\n"
if $opts->{verbose};
next;
}
my $measure = $measures[0];
if ( $measure->{fix} && $measure->{files} ) {
# Expand to the actual install directory paths
my @files = map { "$instance->{installdir}/$_" } @{ $measure->{files} };
if ($webserver_runs_as_user) {
# Set permissions to safer ones.
fix_permissions( \@files, $opts->{perms_run_as_user}, $opts->{verbose} );
}
else {
# Set permissions to dangerous ones.
fix_permissions( \@files, $opts->{perms_run_as_nobody}, $opts->{verbose} );
}
}
else {
print locale()->maketext( 'The “[_1]” module does not contain any security rules.', $mod )
if $opts->{verbose};
}
}
return 0;
}
sub get_instances_as_user {
my ( $user, $homedir ) = @_;
local $ENV{'CPASUSER'} = $user;
local $ENV{'CPNONAVFORPARENT'} = 1;
Cpanel::initcp($user);
local $Cpanel::homedir = $homedir;
return Cpanel::cPAddons::Instances::get_instances();
}
sub fix_permissions {
my ( $files, $perms, $verbose ) = @_;
my ( $exit, $msg ) = Cpanel::cPAddons::File::Perms::fix( $files, $perms );
if ($exit) {
if ( $exit == 4 ) {
print STDERR locale()->maketext( 'The system could not set the file permissions to “[_1]” on the requested files:', sprintf( '%04o', $perms ) ) . "\n";
print STDERR " $_\n" foreach @$files;
}
print STDERR $msg . "\n";
}
elsif ($verbose) {
print STDOUT locale()->maketext('You must set the file permissions to “[_1]” on the following files:') . "\n";
print STDOUT " $_\n" foreach @$files;
}
return $exit;
}
sub get_installed_modules {
my $homedir = shift;
my @registries;
if ( -d "$homedir/.cpaddons/" ) {
if ( opendir( DIRX, "$homedir/.cpaddons/" ) ) {
@registries = grep !/^moderation$/, grep !/\,v$/, grep !/^\./, readdir DIRX;
closedir DIRX;
}
}
my %final;
foreach my $registry (@registries) {
$registry =~ s/\.\d*\.yaml$//;
$final{$registry} = 1;
}
return keys %final;
}
sub print_help {
print STDOUT <<EOU;
usage: $0 [--fix|--no-fix]
Performs runtime script execute checks and repairs directory permissions on supported addons installed on the server.
The tool looks for mod_ruid2, mpm_idk and mod_suphp to determine if the addons can be run with safer file permissions.
--user - optional, only needed if calling from root.
--fix - changes the permission for the files to 0600 if running as the user or 0644 if running as nobody/apache.
--help - gets this help document
--verbose - add more output.
EOU
return;
}
1;