Advertisement
Guest User

wp malware

a guest
Aug 7th, 2016
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 5.62 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Confirms that the activation key that is sent in an email after a user signs
  4.  * up for a new site matches the key for that user and then displays confirmation.
  5.  *
  6.  * @package WordPress
  7.  */
  8.  
  9. define( 'WP_INSTALLING', true );
  10.  
  11. /** Sets up the WordPress Environment. */
  12. require( dirname(__FILE__) . '/wp-load.php' );
  13.  
  14. require( dirname( __FILE__ ) . '/wp-blog-header.php' );
  15.  
  16. if ( !is_multisite() ) {
  17.     wp_redirect( wp_registration_url() );
  18.     die();
  19. }
  20.  
  21. if ( is_object( $wp_object_cache ) )
  22.     $wp_object_cache->cache_enabled = false;
  23.  
  24. // Fix for page title
  25. $wp_query->is_404 = false;
  26.  
  27. /**
  28.  * Fires before the Site Activation page is loaded.
  29.  *
  30.  * @since 3.0.0
  31.  */
  32. do_action( 'activate_header' );
  33.  
  34. /**
  35.  * Adds an action hook specific to this page that fires on wp_head
  36.  *
  37.  * @since MU
  38.  */
  39. function do_activate_header() {
  40.     /**
  41.      * Fires before the Site Activation page is loaded, but on the wp_head action.
  42.      *
  43.      * @since 3.0.0
  44.      */
  45.     do_action( 'activate_wp_head' );
  46. }
  47. add_action( 'wp_head', 'do_activate_header' );
  48.  
  49. /**
  50.  * Loads styles specific to this page.
  51.  *
  52.  * @since MU
  53.  */
  54. function wpmu_activate_stylesheet() {
  55.     ?>
  56.     <style type="text/css">
  57.         form { margin-top: 2em; }
  58.         #submit, #key { width: 90%; font-size: 24px; }
  59.         #language { margin-top: .5em; }
  60.         .error { background: #f66; }
  61.         span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: bold; }
  62.     </style>
  63.     <?php
  64. }
  65. add_action( 'wp_head', 'wpmu_activate_stylesheet' );
  66.  
  67. get_header( 'wp-activate' );
  68. ?>
  69.  
  70. <div id="signup-content" class="widecolumn">
  71.     <div class="wp-activate-container">
  72.     <?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?>
  73.  
  74.         <h2><?php _e('Activation Key Required') ?></h2>
  75.         <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url('wp-activate.php'); ?>">
  76.             <p>
  77.                 <label for="key"><?php _e('Activation Key:') ?></label>
  78.                 <br /><input type="text" name="key" id="key" value="" size="50" />
  79.             </p>
  80.             <p class="submit">
  81.                 <input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e('Activate') ?>" />
  82.             </p>
  83.         </form>
  84.  
  85.     <?php } else {
  86.  
  87.         $key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key'];
  88.         $result = wpmu_activate_signup( $key );
  89.         if ( is_wp_error($result) ) {
  90.             if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) {
  91.                 $signup = $result->get_error_data();
  92.                 ?>
  93.                 <h2><?php _e('Your account is now active!'); ?></h2>
  94.                 <?php
  95.                 echo '<p class="lead-in">';
  96.                 if ( $signup->domain . $signup->path == '' ) {
  97.                     printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() );
  98.                 } else {
  99.                     printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() );
  100.                 }
  101.                 echo '</p>';
  102.             } else {
  103.                 ?>
  104.                 <h2><?php _e('An error occurred during the activation'); ?></h2>
  105.                 <?php
  106.                 echo '<p>'.$result->get_error_message().'</p>';
  107.             }
  108.         } else {
  109.             $url = isset( $result['blog_id'] ) ? get_blogaddress_by_id( (int) $result['blog_id'] ) : '';
  110.             $user = get_userdata( (int) $result['user_id'] );
  111.             ?>
  112.             <h2><?php _e('Your account is now active!'); ?></h2>
  113.  
  114.             <div id="signup-welcome">
  115.                 <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p>
  116.                 <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $result['password']; ?></p>
  117.             </div>
  118.  
  119.             <?php if ( $url && $url != network_home_url( '', 'http' ) ) :
  120.                 switch_to_blog( (int) $result['blog_id'] );
  121.                 $login_url = wp_login_url();
  122.                 restore_current_blog();
  123.                 ?>
  124.                 <p class="view"><?php printf( __( 'Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>' ), $url, esc_url( $login_url ) ); ?></p>
  125.             <?php else: ?>
  126.                 <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p>
  127.             <?php endif;
  128.         }
  129.     }
  130.     ?>
  131.     </div>
  132. </div>
  133. <script type="text/javascript">
  134.     var key_input = document.getElementById('key');
  135.     key_input && key_input.focus();
  136. </script>
  137. <?php get_footer( 'wp-activate' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement