!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache. PHP/5.6.40-67+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux hosting1.erectacloud.it 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC
2024 x86_64
 

uid=5229(web473) gid=5117(client172) groups=5117(client172),5002(sshusers) 

Safe-mode: OFF (not secure)

/var/www/clients/client172/web473/web/OLD_WP/wp-content/plugins/wordpress-seo/admin/import/   drwxr-xr-x
Free 179.25 GB of 490.84 GB (36.52%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-import-hooks.php (1.96 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * @package WPSEO\Admin\Import
 */

/**
 * Abstract object for handling the importing and deactivating of the plugin
 */
abstract class WPSEO_Import_Hooks {

    
/**
     * @var string The main plugin file.
     */
    
protected $plugin_file;

    
/**
     * @var string The GET parameter for running the import.
     */
    
protected $import_listener;

    
/**
     * @var string The GET parameter for deactivating the plugin.
     */
    
protected $deactivation_listener;

    
/**
     * Throw a notice to import settings.
     *
     * @since 3.0
     */
    
abstract public function show_import_settings_notice();

    
/**
     * Throw a notice to inform the user that the plugin has been deactivated
     *
     * @since 3.0
     */
    
abstract public function show_deactivate_notice();

    
/**
     * Adding the hooks to show import/deactivate message when needed.
     */
    
public function __construct() {
        if ( 
$this->is_active() ) {
            
$this->show_import_message();
            
$this->show_deactivate_message();
        }
    }

    
/**
     * Handle deactivation & import of the data data
     *
     * @since 3.0
     */
    
public function show_import_message() {
        if ( 
filter_inputINPUT_GET'tool' ) !== 'import-export' ) {
            
add_action'admin_notices', array( $this'show_import_settings_notice' ) );
        }
    }

    
/**
     * Handle deactivation of the plugin
     *
     * @since 3.0
     */
    
public function show_deactivate_message() {
        if ( 
filter_inputINPUT_GET$this->deactivation_listener ) === '1' ) {
            
// Deactivate AIO.
            
deactivate_plugins$this->plugin_file );

            
// Show notice that aioseo has been deactivated.
            
add_action'admin_notices', array( $this'show_deactivate_notice' ) );

            
// Clean up the referrer url for later use.
            
if ( isset( $_SERVER['REQUEST_URI'] ) ) {
                
$_SERVER['REQUEST_URI'] = remove_query_arg( array( $this->deactivation_listener ), sanitize_text_field$_SERVER['REQUEST_URI'] ) );
            }
        }
    }

    
/**
     * Check if the plugin is active.
     *
     * @return bool
     */
    
protected function is_active() {
        return 
is_plugin_active$this->plugin_file );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0094 ]--