AnonSec Shell
Server IP : 221.132.30.236  /  Your IP : 216.73.216.91   [ Reverse IP ]
Web Server : Apache
System : Linux web3.trangwebvang.net 2.6.32-954.3.5.lve1.4.86.el6.x86_64 #1 SMP Tue Aug 31 17:08:39 UTC 2021 x86_64
User : cherishhotel ( 944)
PHP Version : 5.6.40
Disable Function : exec, system,passthru,shell_exec,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
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /scripts/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /scripts/purge_old_config_caches
#!/usr/local/cpanel/3rdparty/bin/perl

# cpanel - scripts/purge_old_config_caches         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 Cpanel::AccessIds::SetUids ();
use Cpanel::PwCache::Build     ();
use Cpanel::Logger             ();

#
# This script removes any caches in /var/cpanel/configs.cache that are older then 7 days
#

my $logger;
my $TTL = ( 86400 * 14 );    # 14 days
my $now = time();

if ( !-d '/var/cpanel/configs.cache' ) {
    mkdir( '/var/cpanel/configs.cache', 0700 ) || die;
}
Cpanel::PwCache::Build::init_passwdless_pwcache();

my $pwcache_ref = Cpanel::PwCache::Build::fetch_pwcache();

purge_dirs( [ 0, 0, '/var/cpanel/configs.cache' ] );

if ( grep( /--userdirs/, @ARGV ) ) {
    purge_dirs(
        map  { [ $_->[2], $_->[3], $_->[7] . '/.cpanel/caches/config' ] }
        grep { $_->[7] && -e $_->[7] . '/.cpanel/caches/config' } @{$pwcache_ref}
    );
}

sub purge_dirs {
    foreach my $purge_ref (@_) {
        my ( $uid, $gid, $dir ) = @$purge_ref;
        if ( $uid == $> || $gid == ( split( /\s+/, $) ) )[0] ) {
            _purge_dir($dir);
        }
        else {
            if ( my $pid = fork() ) {
                waitpid( $pid, 0 );
            }
            elsif ( defined $pid ) {
                Cpanel::AccessIds::SetUids::setuids( $uid, $gid ) || die;
                _purge_dir($dir);
                exit;
            }
            else {
                $logger ||= Cpanel::Logger->new();
                $logger->warn("Failed to fork()");
            }
        }
    }

    return;
}

sub _purge_dir {
    my $dir = shift;
    my $mtime;
    if ( opendir( my $cachefile_dir, $dir ) ) {
        unlink(
            map  { $dir . '/' . $_ }
            grep { !/^\.+$/ && ( ( $mtime = ( stat( $dir . '/' . $_ ) )[9] ) + $TTL < $now || $mtime > $now ) } readdir($cachefile_dir)
        );
        closedir $cachefile_dir;
    }

    return;
}

Anon7 - 2022
AnonSec Team