shell bypass 403

GrazzMean Shell

: /home/workvvfb/.trash/includes/ [ 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.33
User: workvvfb (1129) | Group: workvvfb (1084)
Safe Mode: OFF
Disable Function:
NONE

name : Activator.php
<?php

/**
 * Fired during plugin activation
 *
 * @link       https://appcheap.io
 * @since      1.0.0
 */

namespace AppBuilder;

defined( 'ABSPATH' ) || exit;

/**
 * Activator class
 */
class Activator {

	/**
	 * Short Description. (use period)
	 *
	 * Long Description.
	 *
	 * @since    1.0.0
	 */
	public function activate() {
		self::create_folder();
	}

	/**
	 * Create app builder folder
	 */
	private function create_folder() {
		global $wp_filesystem;

		// Initialize the WP_Filesystem.
		if ( ! function_exists( 'WP_Filesystem' ) ) {
			require_once ABSPATH . 'wp-admin/includes/file.php';
		}

		WP_Filesystem();

		$dir = APP_BUILDER_PREVIEW_DIR;
		if ( ! $wp_filesystem->is_dir( $dir ) ) {
			$wp_filesystem->mkdir( $dir, 0755 );
		}
		$wp_filesystem->chmod( $dir, 0755 );
	}
}
© 2025 GrazzMean