Linux 43-250-141-107.cprapid.com 4.18.0-553.150.1.lve.el8.x86_64 #1 SMP Tue Aug 4 17:30:48 UTC 2026 x86_64
LiteSpeed
Server IP : 43.250.141.107 & Your IP : 216.73.216.251
Domains :
Cant Read [ /etc/named.conf ]
User : thepngre
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
thepngre /
public_html /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-09-10 10:29
category
[ DIR ]
drwxr-xr-x
2026-09-03 12:49
contact
[ DIR ]
drwxr-xr-x
2026-09-10 10:29
tag
[ DIR ]
drwxr-xr-x
2026-09-03 12:49
tag-notice
[ DIR ]
drwxr-xr-x
2026-09-10 10:29
well-known
[ DIR ]
drwxr-xr-x
2026-09-03 12:49
wp-admin
[ DIR ]
drwxr-xr-x
2026-09-21 12:08
wp-content
[ DIR ]
drwxr-xr-x
2026-09-21 12:20
wp-includes
[ DIR ]
drwxr-xr-x
2026-09-12 05:44
.htaccess
626
B
-r--r--r--
2026-09-21 12:21
deleteme.wp03f9adabc5f94a9680fd7ce7b02aa9b8.php
43.86
KB
-rwxr-xr-x
2026-09-12 05:44
deleteme.wp2c07d843be9d402fba2adbd707cb9f30.php
43.86
KB
-rwxr-xr-x
2026-09-17 05:44
deleteme.wp3ce0f6db416a4759ad76ce14b07bac8e.php
43.86
KB
-rwxr-xr-x
2026-09-15 05:44
deleteme.wp8d44297e5c7849fea430a2ad4ac83dea.php
43.86
KB
-rwxr-xr-x
2026-09-15 11:44
deleteme.wpb13bf102baef4f7eb61e68af3f16b7a7.php
43.86
KB
-rwxr-xr-x
2026-09-12 11:44
deleteme.wpc256b705d2ed49c2bc0b30d2ce30a94d.php
43.86
KB
-rwxr-xr-x
2026-09-14 05:44
deleteme.wpcc9079f0cd454449b83c407e46a8e4d1.php
43.86
KB
-rwxr-xr-x
2026-09-13 05:44
error_log
157.61
MB
-rw-r--r--
2026-09-21 16:03
index.php
17.31
KB
-r--r--r--
2026-09-10 12:42
license.txt
19.44
KB
-rw-r--r--
2026-09-10 10:52
readme.html
7.23
KB
-rw-r--r--
2026-09-10 10:52
wp-activate.php
7.54
KB
-rw-r--r--
2026-09-10 10:52
wp-blog-header.php
351
B
-rw-r--r--
2020-02-06 17:33
wp-comments-post.php
2.27
KB
-rw-r--r--
2023-06-15 00:11
wp-conffg.php
132.17
KB
-rw-r--r--
2026-09-10 11:44
wp-config-sample.php
3.26
KB
-rw-r--r--
2025-08-13 00:47
wp-config.php
3.82
KB
-rw-------
2026-09-10 11:07
wp-cron.php
5.49
KB
-rw-r--r--
2024-08-03 05:40
wp-links-opml.php
2.43
KB
-rw-r--r--
2025-04-30 22:52
wp-load.php
3.84
KB
-rw-r--r--
2024-03-11 21:05
wp-login.php
51.3
KB
-rw-r--r--
2026-09-17 05:44
wp-mail.php
8.52
KB
-rw-r--r--
2025-04-03 09:25
wp-settings.php
32.38
KB
-rw-r--r--
2026-09-10 10:52
wp-signup.php
34.26
KB
-rw-r--r--
2026-09-10 10:52
wp-trackback.php
5.27
KB
-rw-r--r--
2026-09-10 10:52
wper.php
13.26
KB
-rw-r--r--
2026-07-02 11:58
xmlrpc.php
3.13
KB
-rw-r--r--
2024-11-09 02:52
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;