!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/local/wp/vendor/wp-cli/export-command/src/   drwxr-xr-x
Free 714.47 GB of 879.6 GB (81.23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     WP_Export_XML_Over_HTTP.php (1.34 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php


class WP_Export_XML_Over_HTTP extends WP_Export_Base_Writer {
    private $file_name;

    public function __construct( $formatter, $file_name ) {
        parent::__construct( $formatter );
        $this->file_name = $file_name;
    }

    public function export() {
        try {
            $export = $this->get_export();
            $this->send_headers();
            echo $export;
        } catch ( WP_Export_Exception $e ) {
            // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound -- Possibly used by third party extension.
            $message = apply_filters( 'export_error_message', $e->getMessage() );
            wp_die( $message, __( 'Export Error' ), [ 'back_link' => true ] );
        } catch ( WP_Export_Term_Exception $e ) {
            do_action( 'export_term_orphaned', $this->formatter->export->missing_parents );
            $message = apply_filters( 'export_term_error_message', $e->getMessage() );
            // phpcs:enable
            wp_die( $message, __( 'Export Error' ), [ 'back_link' => true ] );
        }
    }

    protected function write( $xml ) {
        $this->result .= $xml;
    }

    protected function get_export() {
        $this->result = '';
        parent::export();
        return $this->result;
    }

    protected function send_headers() {
        header( 'Content-Description: File Transfer' );
        header( 'Content-Disposition: attachment; filename=' . $this->file_name );
        header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0125 ]--