shell bypass 403

GrazzMean-Shell Shell

: /home/dreampi/www/wp-content/themes/spin/ [ drwxr-xr-x ]
Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : sidebar.php
<?php
/**
 * The Sidebar containing the main widget areas.
 *
 * @package SPIN
 * @since SPIN 1.0
 */

if ( spin_sidebar_present() ) {
	
	$spin_sidebar_type = spin_get_theme_option( 'sidebar_type' );
	if ( 'custom' == $spin_sidebar_type && ! spin_is_layouts_available() ) {
		$spin_sidebar_type = 'default';
	}
	
	// Catch output to the buffer
	ob_start();
	if ( 'default' == $spin_sidebar_type ) {
		// Default sidebar with widgets
		$spin_sidebar_name = spin_get_theme_option( 'sidebar_widgets' );
		spin_storage_set( 'current_sidebar', 'sidebar' );
		if ( is_active_sidebar( $spin_sidebar_name ) ) {
			dynamic_sidebar( $spin_sidebar_name );
		}
	} else {
		// Custom sidebar from Layouts Builder
		$spin_sidebar_id = spin_get_custom_sidebar_id();
		do_action( 'spin_action_show_layout', $spin_sidebar_id );
	}
	$spin_out = trim( ob_get_contents() );
	ob_end_clean();
	
	// If any html is present - display it
	if ( ! empty( $spin_out ) ) {
		$spin_sidebar_position    = spin_get_theme_option( 'sidebar_position' );
		$spin_sidebar_position_ss = spin_get_theme_option( 'sidebar_position_ss' );
		?>
		<div class="sidebar widget_area
			<?php
			echo ' ' . esc_attr( $spin_sidebar_position );
			echo ' sidebar_' . esc_attr( $spin_sidebar_position_ss );
			echo ' sidebar_' . esc_attr( $spin_sidebar_type );

			$spin_sidebar_scheme = apply_filters( 'spin_filter_sidebar_scheme', spin_get_theme_option( 'sidebar_scheme' ) );
			if ( ! empty( $spin_sidebar_scheme ) && ! spin_is_inherit( $spin_sidebar_scheme ) && 'custom' != $spin_sidebar_type ) {
				echo ' scheme_' . esc_attr( $spin_sidebar_scheme );
			}
			?>
		" role="complementary">
			<?php

			// Skip link anchor to fast access to the sidebar from keyboard
			?>
			<a id="sidebar_skip_link_anchor" class="spin_skip_link_anchor" href="#"></a>
			<?php

			do_action( 'spin_action_before_sidebar_wrap', 'sidebar' );

			// Button to show/hide sidebar on mobile
			if ( in_array( $spin_sidebar_position_ss, array( 'above', 'float' ) ) ) {
				$spin_title = apply_filters( 'spin_filter_sidebar_control_title', 'float' == $spin_sidebar_position_ss ? esc_html__( 'Show Sidebar', 'spin' ) : '' );
				$spin_text  = apply_filters( 'spin_filter_sidebar_control_text', 'above' == $spin_sidebar_position_ss ? esc_html__( 'Show Sidebar', 'spin' ) : '' );
				?>
				<a href="#" class="sidebar_control" title="<?php echo esc_attr( $spin_title ); ?>"><?php echo esc_html( $spin_text ); ?></a>
				<?php
			}
			?>
			<div class="sidebar_inner">
				<?php
				do_action( 'spin_action_before_sidebar', 'sidebar' );
				spin_show_layout( preg_replace( "/<\/aside>[\r\n\s]*<aside/", '</aside><aside', $spin_out ) );
				do_action( 'spin_action_after_sidebar', 'sidebar' );
				?>
			</div>
			<?php

			do_action( 'spin_action_after_sidebar_wrap', 'sidebar' );

			?>
		</div>
		<div class="clearfix"></div>
		<?php
	}
}
© 2026 GrazzMean-Shell