Plugin ini belum teruji dangan 3 rilis besar WordPress. Kemungkinan tidak lagi dipelihara atau didukung, dan mungkin menghadapi masalah kompatibilitas bila digunakan dengan versi WordPress yang lebih baru.

wp-bcrypt

Deskripsi

WordPress uses phpass to store passwords. Because WordPress has to work everywere, it uses the portable version of phpass,
which uses MD5 to hash passwords. MD5 is not a very good hashing algorithm for passwords, because it’s relatively fast.

This plugin switches over to bcrypt, which is the algorithm recommended by phpass, and is a much better option for password
storage because it is much slower to produce. This makes it much harder for an attacker who’s managed to access your hashed
passwords to obtain plain text passwords by brute-forcing, or by trying passwords from a dictionary.

Note: this plugin requires PHP 5.3.0 or newer

Be aware that if you use this plugin and then move to a host that does not support bcrypt, you will need to reset any user
account that you want to log in with.

Instalasi

  1. Upload the wp-bcrypt directory to the wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Tanya Jawab

How do you change the hashes?

Users’ hashes are changed to bcrypt when they first login in after the plugin is activated. All of WordPress’s built-in functions
will use bcrypt too, when intially creating an account, changing your password, or adding a password to a post.

What happens if I deactivate the plugin?

As long as you have bcrypt support (PHP 5.3.0 or newer) WordPress will happily continue checking passwords that are hashed using
bcrypt. Everything should work fine. But any new passwords you hash (for a new account, or changing an existing account) will be
made using MD5.

Ulasan

Baca semua 4 ulasan

Kontributor & Pengembang

“wp-bcrypt” adalah perangkat lunak open source. Berikut ini mereka yang sudah berkontribusi pada plugin ini.

Kontributor

Terjemahkan “wp-bcrypt” dalam bahasa Anda.

Tertarik mengembangkan?

Lihat kode, periksa repositori SVN , atau mendaftar ke log pengembangan melalui RSS.

Log Perubahan

1.0.1

  • Readme improvements

1.0.0

  • Initial release