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 : 18.191.169.138
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
pusher /
pusher-php-server /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Pusher.php
26.72
KB
-rwxr-xr-x
2018-08-13 09:00
PusherCrypto.php
5.69
KB
-rw-r--r--
2018-08-13 09:00
PusherException.php
86
B
-rw-r--r--
2018-08-13 09:00
PusherInstance.php
578
B
-rw-r--r--
2018-08-13 09:00
Webhook.php
383
B
-rw-r--r--
2018-08-13 09:00
Save
Rename
<?php namespace Pusher; class PusherInstance { private static $instance = null; private static $app_id = ''; private static $secret = ''; private static $api_key = ''; /** * Get the pusher singleton instance. * * @return Pusher */ public static function get_pusher() { if (self::$instance !== null) { return self::$instance; } self::$instance = new Pusher( self::$api_key, self::$secret, self::$app_id ); return self::$instance; } }