Server IP : 103.119.228.120 / Your IP : 18.222.182.249 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /scripts/ |
Upload File : |
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/securerailsapps 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 use strict; use warnings; use File::Find; use Cpanel::PwCache (); use Cpanel::PwCache::Build (); use Cpanel::AccessIds::SetUids (); use Cpanel::Usage (); use Cpanel::ConfigFiles (); use Cpanel::Config::userdata::Constants (); my $user = ''; my $all = 0; my %opts = ( 'user' => \$user, 'all' => \$all, ); Cpanel::Usage::wrap_options( \@ARGV, \&usage, \%opts ); if ($user) { if ( !-e "$Cpanel::ConfigFiles::cpanel_users/$user" ) { print STDERR "User $user not found...\n"; exit 1; } my $homedir = ( Cpanel::PwCache::getpwnam($user) )[7]; if ( !$homedir ) { print STDERR "Invalid user $user\n"; exit 1; } if ( my $pid = fork() ) { waitpid( $pid, 0 ); } else { Cpanel::AccessIds::SetUids::setuids( $user, $user ); secure_rails_dirs( $user, $homedir ); exit; } } elsif ($all) { Cpanel::PwCache::Build::init_passwdless_pwcache(); opendir( my $dir_h, $Cpanel::ConfigFiles::cpanel_users ) or die "Failed to read cPanel users directory: $!"; my @files = grep { !/^\.\.?$/ } readdir($dir_h); close($dir_h); chomp(@files); foreach my $user (@files) { my $homedir = ( Cpanel::PwCache::getpwnam($user) )[7]; next if !$homedir; print "Securing rails apps for: $user\n"; if ( my $pid = fork() ) { waitpid( $pid, 0 ); } else { Cpanel::AccessIds::SetUids::setuids( $user, $user ); secure_rails_dirs( $user, $homedir ); exit; } } } else { usage(); } sub secure_rails_dirs { my ( $user, $homedir ) = @_; my @rails_dirs; File::Find::find( { 'wanted' => sub { if ( $File::Find::name =~ /boot\.rb$/ ) { $File::Find::name =~ s{config/boot\.rb}{}; push @rails_dirs, $File::Find::name; } }, 'no_chdir' => 1, 'untaint' => 1, }, $homedir ); foreach my $rails_dir (@rails_dirs) { foreach my $dir (qw<app config db doc lib script test tmp vendor>) { my $htaccess_file = "$rails_dir/$dir/.htaccess"; ($htaccess_file) = $htaccess_file =~ /^(.*)$/; if ( !-e $htaccess_file ) { if ( open( my $fh, '>', $htaccess_file ) ) { print {$fh} htaccess(); close($fh); } } } } } sub htaccess { return <<'EOF'; <Limit GET POST OPTIONS PROPFIND> Order allow,deny Deny from all </Limit> EOF } sub move_yaml_files { my ( $user, $home ) = @_; if ( -e "$home/.cpanel/ruby-on-rails.db" ) { system( 'mv', "$home/.cpanel/ruby-on-rails.db", "$Cpanel::Config::userdata::Constants::USERDATA_DIR/$user/ruby-on-rails" ); } if ( -e "$home/.cpanel/ruby-on-rails-rewrites.db" ) { system( 'mv', "$home/.cpanel/ruby-on-rails-rewrites.db", "$Cpanel::Config::userdata::Constants::USERDATA_DIR/$user/ruby-on-rails-rewrites" ); } return; } sub usage { my $prog = $0; $prog =~ s{^.+/(.+)$}{$1}; print <<EOF; $prog [--all] [--user cpuser] EOF exit(0); }