ヤミRoot VoidGate
User / IP
:
216.73.216.143
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
vich
/
uploader-bundle
/
src
/
Templating
/
Helper
/
Viewing: UploaderHelper.php
<?php namespace Vich\UploaderBundle\Templating\Helper; use Vich\UploaderBundle\Storage\StorageInterface; /** * UploaderHelper. * * @author Dustin Dobervich <ddobervich@gmail.com> * @final */ class UploaderHelper implements UploaderHelperInterface { /** * @var StorageInterface */ protected $storage; public function __construct(StorageInterface $storage) { $this->storage = $storage; } public function getName(): string { return 'vich_uploader'; } /** * Gets the public path for the file associated with the * object. * * @param object|array $obj The object * @param string|null $fieldName The field name * @param string|null $className The object's class. Mandatory if $obj can't be used to determine it * * @return string|null The public asset path or null if file not stored */ public function asset($obj, ?string $fieldName = null, ?string $className = null) { if (!\is_object($obj)) { $msg = 'Not passing an object option is deprecated and will be removed in version 2.'; @\trigger_error($msg, \E_USER_DEPRECATED); } if (\func_num_args() > 2) { $msg = 'Passing a classname is deprecated and will be removed in version 2.'; @\trigger_error($msg, \E_USER_DEPRECATED); } if (null === $className) { return $this->storage->resolveUri($obj, $fieldName); } return $this->storage->resolveUri($obj, $fieldName, $className); } }
Coded With 💗 by
0x6ick