Linux server292.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
: 162.0.235.5 | : 216.73.216.219
Cant Read [ /etc/named.conf ]
8.3.25
comfsblg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
comfsblg /
unffe /
wp-content /
plugins /
depicter /
[ HOME SHELL ]
Name
Size
Permission
Action
app
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-rw-r--r--
LICENSE
17.62
KB
-rw-r--r--
config.json
632
B
-rw-r--r--
depicter.php
2.52
KB
-rw-r--r--
readme.txt
43.85
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : depicter.php
<?php /** * Plugin Name: Depicter * Plugin URI: https://depicter.com * Description: Build stunning sliders, popups, carousels, video sliders, post sliders, and WooCommerce sliders fast and easy. * Version: 4.0.4 * Requires at least: 5.3 * Requires PHP: 7.4.0 * Author: Depicter Slider and Popup by Averta * Author URI: https://depicter.com * License: GPL-2.0-only * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: depicter * Domain Path: /languages * * * @package Depicter */ const DEPICTER_VERSION = '4.0.4'; if ( ! defined( 'ABSPATH' ) ) { exit; } $name = trim( get_file_data( __FILE__, [ 'Plugin Name' ] )[0] ); // Make sure requirements are met require_once __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'requirement.php'; if( ! depicter_requirements_satisfied( $name, '7.2.5' ) ){ // requirements are not met, stop further execution. // depicter_requirements_satisfied() will automatically add an admin notice. return; } // Make sure we can load a compatible version of WP Emerge. require_once __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'version.php'; if ( ! depicter_should_load_framework( $name, '0.16.0', '2.0.0' )) { // An incompatible WP Emerge version is already loaded - stop further execution. // depicter_should_load_framework() will automatically add an admin notice. return; } // CONSTANTS ------- const DEPICTER_PLUGIN_ID = 'depicter'; const DEPICTER_PLUGIN_FILE = __FILE__; const DEPICTER_PLUGIN_PATH = __DIR__; define( 'DEPICTER_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'DEPICTER_PLUGIN_BASENAME', plugin_basename( __FILE__ ) ); // ----------------- // Load composer dependencies. if ( file_exists( __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php' ) ) { require_once __DIR__ . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php'; } depicter_declare_loaded_framework( $name, 'plugin', __FILE__ ); // Load helpers. require_once __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'App.php'; require_once __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'helpers.php'; require_once __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'functions.php'; // Bootstrap plugin after all dependencies and helpers are loaded. \Depicter::make()->bootstrap( require __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'config.php' ); // Register hooks. require_once __DIR__ . DIRECTORY_SEPARATOR . 'app' . DIRECTORY_SEPARATOR . 'hooks.php';
Close