Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
symfony /
mime /
Part /
Delete
Unzip
Name
Size
Permission
Date
Action
Multipart
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
AbstractMultipartPart.php
2.23
KB
-rw-r--r--
2025-09-16 08:38
AbstractPart.php
1.49
KB
-rw-r--r--
2025-09-16 08:38
DataPart.php
4.5
KB
-rw-r--r--
2025-09-16 08:38
File.php
1.07
KB
-rw-r--r--
2025-09-16 08:38
MessagePart.php
1.48
KB
-rw-r--r--
2025-09-16 08:38
SMimePart.php
2.34
KB
-rw-r--r--
2025-09-16 08:38
TextPart.php
7.8
KB
-rw-r--r--
2025-09-16 08:38
Save
Rename
<?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\Part; use Symfony\Component\Mime\MimeTypes; /** * @author Fabien Potencier <fabien@symfony.com> */ class File { private static MimeTypes $mimeTypes; public function __construct( private string $path, private ?string $filename = null, ) { } public function getPath(): string { return $this->path; } public function getContentType(): string { $ext = strtolower(pathinfo($this->path, \PATHINFO_EXTENSION)); self::$mimeTypes ??= new MimeTypes(); return self::$mimeTypes->getMimeTypes($ext)[0] ?? 'application/octet-stream'; } public function getSize(): int { return filesize($this->path); } public function getFilename(): string { return $this->filename ??= basename($this->getPath()); } }