Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.148
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
cboden /
ratchet /
src /
Ratchet /
Wamp /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception.php
70
B
-rw-r--r--
2017-12-12 09:00
JsonException.php
904
B
-rw-r--r--
2017-12-12 09:00
ServerProtocol.php
4.65
KB
-rw-r--r--
2017-12-12 09:00
Topic.php
2.32
KB
-rw-r--r--
2017-12-12 09:00
TopicManager.php
3.02
KB
-rw-r--r--
2017-12-12 09:00
WampConnection.php
3.42
KB
-rw-r--r--
2017-12-12 09:00
WampServer.php
1.81
KB
-rw-r--r--
2017-12-12 09:00
WampServerInterface.php
1.92
KB
-rw-r--r--
2017-12-12 09:00
Save
Rename
<?php namespace Ratchet\Wamp; class JsonException extends Exception { public function __construct() { $code = json_last_error(); switch ($code) { case JSON_ERROR_DEPTH: $msg = 'Maximum stack depth exceeded'; break; case JSON_ERROR_STATE_MISMATCH: $msg = 'Underflow or the modes mismatch'; break; case JSON_ERROR_CTRL_CHAR: $msg = 'Unexpected control character found'; break; case JSON_ERROR_SYNTAX: $msg = 'Syntax error, malformed JSON'; break; case JSON_ERROR_UTF8: $msg = 'Malformed UTF-8 characters, possibly incorrectly encoded'; break; default: $msg = 'Unknown error'; break; } parent::__construct($msg, $code); } }