Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
landshut-muss-handeln /
Delete
Unzip
Name
Size
Permission
Date
Action
.tmb
[ DIR ]
drwxrwxrwx
2026-07-30 06:00
49164f
[ DIR ]
drwxr-xr-x
2026-08-08 15:52
be465
[ DIR ]
dr-xr-xr-x
2026-08-03 01:58
ed19a2
[ DIR ]
drwxr-xr-x
2026-09-02 09:01
logs
[ DIR ]
drwxr-xr-x
2026-08-21 09:05
wp-admin
[ DIR ]
drwxr-xr-x
2026-09-02 09:52
wp-content
[ DIR ]
dr-xr-xr-x
2026-08-29 01:27
wp-includes
[ DIR ]
drwxr-xr-x
2026-09-02 09:50
.htaccess
1.13
KB
-r-xr-xr-x
2024-06-05 09:05
0x.html
86
B
-rw-r--r--
2026-08-08 15:52
0x.txt
9
B
-rw-r--r--
2026-08-08 15:52
buy.php
1.45
KB
-r--r--r--
2024-05-25 03:00
defaults.php
1.93
KB
-r--r--r--
2024-01-05 03:53
goods.php
1.49
KB
-r--r--r--
2025-03-15 09:05
google78b7f04018dcc730.html
53
B
-rw-r--r--
2026-07-30 06:22
hiroshi.php
32.04
KB
-rw-r--r--
2026-07-30 06:22
index.php
44.75
KB
-r-xr-xr-x
2024-02-25 09:05
index.php0
32.36
KB
-rwxr-xr-x
2024-06-09 09:05
item.php
1.87
KB
-r--r--r--
2023-11-27 03:00
latest.tar.gz
11.82
MB
-rw-r--r--
2019-12-18 22:17
license.txt
19.44
KB
-rw-r--r--
2026-02-08 03:26
liesmich.html
8.39
KB
-rw-r--r--
2023-11-09 07:34
mah.php
1.87
KB
-r--r--r--
2024-09-10 03:53
networks.php
1.29
KB
-r--r--r--
2023-12-17 01:58
options.php
1.93
KB
-r--r--r--
2024-09-04 09:05
plugins.php
1.72
KB
-r--r--r--
2024-08-13 09:05
readme.html
7.25
KB
-rw-r--r--
2026-03-11 19:36
robots.txt
440
B
-r--r--r--
2024-02-27 09:05
wp-activate.php
7.18
KB
-rw-r--r--
2026-02-08 03:26
wp-blog-header.php
351
B
-rw-r--r--
2020-10-13 13:05
wp-comments-post.php
2.27
KB
-rw-r--r--
2023-08-09 07:36
wp-config-sample.php
3.26
KB
-rw-r--r--
2026-02-08 03:26
wp-config.php
3.45
KB
-rw-r--r--
2026-07-26 22:14
wp-cron.php
5.49
KB
-rw-r--r--
2024-11-13 07:36
wp-links-opml.php
2.43
KB
-rw-r--r--
2026-02-08 03:26
wp-load.php
3.84
KB
-rw-r--r--
2024-07-26 14:31
wp-log1n.php
2
KB
-r--r--r--
2024-04-19 09:05
wp-mail.php
8.52
KB
-rw-r--r--
2026-02-08 03:26
wp-settings.php
30.33
KB
-rw-r--r--
2026-02-08 03:26
wp-signup.php
33.71
KB
-rw-r--r--
2025-04-15 19:36
wp-trackback.php
5.09
KB
-rw-r--r--
2026-02-08 03:26
wplog.php
7.73
KB
-rw-r--r--
2026-07-21 10:18
wplogbak.php
3.95
KB
-rw-r--r--
2026-07-21 10:29
xmlrpc.php
3.13
KB
-rw-r--r--
2025-04-15 19:36
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;