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.47
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 /
wp-cli-tests /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
behat-tags.php
3.3
KB
-rw-r--r--
generate-coverage.php
3.27
KB
-rw-r--r--
no-mail.php
709
B
-rw-r--r--
polyfills.php
2.5
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : no-mail.php
<?php /** * This file is copied as a mu-plugin into new WP installs to reroute normal * mails into log entries. */ /** * Replace WP native pluggable wp_mail function for test purposes. * * @param string|string[] $to Array or comma-separated list of email addresses to send message. * @return bool Whether the email was sent successfully. * * @phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound -- WP native function. */ function wp_mail( $to ) { if ( is_array( $to ) ) { $to = join( ', ', $to ); } // Log for testing purposes WP_CLI::log( "WP-CLI test suite: Sent email to {$to}." ); // Assume sending mail always succeeds. return true; } // phpcs:enable
Close