shell bypass 403

GrazzMean Shell

: /home/workvvfb/.trash/includes/Api/ [ drwxr-xr-x ]
Uname: Linux premium264.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.3.21 [ PHP INFO ] PHP os: Linux
Server Ip: 69.57.162.13
Your Ip: 216.73.216.219
User: workvvfb (1129) | Group: workvvfb (1084)
Safe Mode: OFF
Disable Function:
NONE

name : Base.php
<?php
/**
 * Base API
 *
 * @link       https://appcheap.io
 * @since      1.0.0
 *
 * @author     AppCheap <ngocdt@rnlab.io>
 */

namespace AppBuilder\Api;

defined( 'ABSPATH' ) || exit;

use WP_REST_Controller;

class Base extends WP_REST_Controller {

	public function __construct() {
		$this->namespace = APP_BUILDER_REST_BASE . '/v1';
	}

	/**
	 *
	 * Get text name
	 *
	 * @param string $txt
	 *
	 * @return string
	 */
	public function get_txt_name( string $txt = '' ): string {
		return trim( APP_BUILDER_NAME . $txt );
	}

	/**
	 *
	 * Get domain name
	 *
	 * @return string
	 */
	public function get_txt_domain(): string {
		return APP_BUILDER_DOMAIN;
	}

	/**
	 * @param $request
	 *
	 * @return bool
	 */
	public function admin_permissions_check( $request ): bool {
		return current_user_can( 'manage_options' );
	}

	/**
	 * Check user logged
	 *
	 * @param $request
	 *
	 * @return bool
	 */
	public function logged_permissions_check( $request ): bool {
		return get_current_user_id() > 0;
	}
}
© 2025 GrazzMean