Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
dustinhy /
.www_backup /
plugins /
jetpack /
sal /
Delete
Unzip
Name
Size
Permission
Date
Action
class.json-api-date.php
2.49
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-links.php
15.49
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-metadata.php
2.09
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-platform-jetpack.php
1.31
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-platform.php
1.25
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-post-base.php
31.01
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-post-jetpack.php
2.17
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-site-base.php
40.37
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-site-jetpack-base.php
10.82
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-site-jetpack.php
17.26
KB
-rw-r--r--
2025-11-24 15:20
class.json-api-token.php
3.72
KB
-rw-r--r--
2025-11-24 15:20
Save
Rename
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName /** * WPORG_Platform class that extends SAL_Platform, returning a Jetpack_Site with a $blog_id and $token * * @package automattic/jetpack */ require_once __DIR__ . '/class.json-api-platform.php'; /** * Base class for WPORG_Platform, which extends SAL_Platform */ class WPORG_Platform extends SAL_Platform { /** * Given a Jetpack blog ID, this function returns a Jetpack_Site instance * * @param int $blog_id A Jetpack blog ID. * @return Jetpack_Site A Jetpack_Site instance including all relevant details needed to define a Jetpack site. **/ public function get_site( $blog_id ) { require_once __DIR__ . '/class.json-api-site-jetpack.php'; return new Jetpack_Site( $blog_id, $this ); } } // phpcs:disable Universal.Files.SeparateFunctionsFromOO.Mixed -- TODO: Move these functions to some other file. /** * Given a token instance (with blog and user id related information), this function returns a new WPORG_Platform instance * * @param SAL_Token $token A token instance. * @see class.json-api-token.php * @return WPORG_Platform A WPORG_Platform instance including all relevant details needed to define a Jetpack site, as well as a token instance. **/ function wpcom_get_sal_platform( $token ) { return new WPORG_Platform( $token ); }