Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.189.186.95
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lionsclub /
core /
vendor /
symfony /
var-dumper /
Caster /
[ HOME SHELL ]
Name
Size
Permission
Action
AmqpCaster.php
6.54
KB
-rw-r--r--
ArgsStub.php
2.24
KB
-rw-r--r--
Caster.php
6
KB
-rw-r--r--
ClassStub.php
3.75
KB
-rw-r--r--
ConstStub.php
748
B
-rw-r--r--
CutArrayStub.php
696
B
-rw-r--r--
CutStub.php
1.88
KB
-rw-r--r--
DOMCaster.php
9.86
KB
-rw-r--r--
DateCaster.php
4.61
KB
-rw-r--r--
DoctrineCaster.php
1.63
KB
-rw-r--r--
DsCaster.php
1.55
KB
-rw-r--r--
DsPairStub.php
613
B
-rw-r--r--
EnumStub.php
637
B
-rw-r--r--
ExceptionCaster.php
15.5
KB
-rw-r--r--
FrameStub.php
740
B
-rw-r--r--
GmpCaster.php
749
B
-rw-r--r--
ImagineCaster.php
949
B
-rw-r--r--
ImgStub.php
637
B
-rw-r--r--
IntlCaster.php
8.72
KB
-rw-r--r--
LinkStub.php
3.29
KB
-rw-r--r--
MemcachedCaster.php
2.29
KB
-rw-r--r--
PdoCaster.php
3.47
KB
-rw-r--r--
PgSqlCaster.php
5.36
KB
-rw-r--r--
ProxyManagerCaster.php
721
B
-rw-r--r--
RdKafkaCaster.php
4.47
KB
-rw-r--r--
RedisCaster.php
5.14
KB
-rw-r--r--
ReflectionCaster.php
14.08
KB
-rw-r--r--
ResourceCaster.php
3.19
KB
-rw-r--r--
SplCaster.php
7.63
KB
-rw-r--r--
StubCaster.php
2.09
KB
-rw-r--r--
SymfonyCaster.php
1.76
KB
-rw-r--r--
TraceStub.php
963
B
-rw-r--r--
UuidCaster.php
668
B
-rw-r--r--
XmlReaderCaster.php
2.94
KB
-rw-r--r--
XmlResourceCaster.php
2.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : FrameStub.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 Symfony\Component\VarDumper\Caster; /** * Represents a single backtrace frame as returned by debug_backtrace() or Exception->getTrace(). * * @author Nicolas Grekas <p@tchwork.com> */ class FrameStub extends EnumStub { public $keepArgs; public $inTraceStub; public function __construct(array $frame, bool $keepArgs = true, bool $inTraceStub = false) { $this->value = $frame; $this->keepArgs = $keepArgs; $this->inTraceStub = $inTraceStub; } }
Close