AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 3.145.202.244   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/chroot/var/www/wp-content/plugins/weglot/includes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/chroot/var/www/wp-content/plugins/weglot/includes/class-http-gone.php
<?php

namespace Webmention;

use WP_Query;

/**
 * Send HTTP 410 for deleted posts
 *
 * @author Matthias Pfefferle
 */
class HTTP_Gone {
	/**
	 * Initialize Deleted Posts Plugin
	 */
	public static function init() {
		add_action( 'template_redirect', array( static::class, 'handle_410' ), 99 );
	}

	public static function handle_410() {
		if ( ! is_404() ) {
			return;
		}

		global $wp_query;

		// check slug
		if ( ! empty( $wp_query->query['pagename'] ) ) {
			$query = new WP_Query(
				array(
					'pagename'    => $wp_query->query['pagename'] . '__trashed',
					'post_status' => 'trash',
				)
			);
		} elseif ( ! empty( $wp_query->query['name'] ) ) {
			$query = new WP_Query(
				array(
					'name'        => $wp_query->query['name'] . '__trashed',
					'post_status' => 'trash',
				)
			);
		} else {
			return;
		}

		// return 410
		if ( $query->get_posts() ) {
			status_header( 410 );
			// check if theme has a 410.php template
			$template_410 = get_query_template( 410 );
			// return 410 template
			if ( $template_410 ) {
				load_template( $template_410 );
				exit;
			}
		}
	}
}

Anon7 - 2022
AnonSec Team