RevealTheme logo

WordPress密钥生成器

为你的wp-config.php生成全新的认证密钥和salt:使用crypto.getRandomValues()在你的浏览器中运行。

define('AUTH_KEY', 'K2PYDRvw8I8NB*>4z)=xDiru4HdPkqr-$[Dz=.lN#gbxF?R%jVeKOdn_onxFM4^.');
define('SECURE_AUTH_KEY', 'YwauX^}?d&21(_IBc_gsriZ67CHenQ$Gc0Nj^ny,Z5Tf,bYcv!=&G6iQ46(yeXeB');
define('LOGGED_IN_KEY', '<Qv&Wwn#(4jgcMFCh<ot@+qONN+vYtL(f(*GwGo6oZ_)3fsqi1iAu%KYA+mp,(Sl');
define('NONCE_KEY', 'wqxbBSa,79!H3ADb1&x+y9!I!c5kri.b]%BCavVsR<N^ETxkB94baN=u@q{}21g!');
define('AUTH_SALT', 'Hu4V1MmJrvhQwb4Vc&UgiKOM[i-f$os@l=l,_DzBcEtT%(e4-VhSCF^>g]9]]!X}');
define('SECURE_AUTH_SALT', '3)ghhe#dx1Uurpm41T)9=H=Q]j8cf)VG5EeUkr@JFXkJ$AEG(Ij61[,!Q>$IAq>U');
define('LOGGED_IN_SALT', 'GMkw9Q!vQrDPMKf?L.U+mEv%pGi@uYZzMT!{+4f$DcPG}?+<djNv&ztYjz_t$&Ya');
define('NONCE_SALT', '1^d6b8_}D*m&b9>Dbf0<)!1!i01H36b4r%RvHHvDFIR*[e*O?SSCSF@(<ulu@jp}');

如何使用本工具

  1. 1

    点击“重新生成”以产生全新的盐值。

  2. 2

    将全部内容复制到剪贴板。

  3. 3

    粘贴并覆盖wp-config.php中现有的AUTH_KEY代码块。

  4. 4

    所有用户都将被登出(Cookie失效)——这是预期的行为。

什么是WordPress密钥生成器?

WordPress在wp-config.php中使用八个常量来加密cookie并为密码哈希加salt。每一个都必须是一段长的随机字符串。官方端点api.wordpress.org/secret-key可以提供这些密钥,但本工具使用你浏览器的加密随机数生成器在本地生成它们,因此它们绝不会经过网络传输。

常见使用场景

  • Setting up a brand-new WordPress install and replacing the placeholder 'put your unique phrase here' lines in wp-config.php.

  • Rotating keys after a suspected compromise to force-log-out every session and invalidate stolen auth cookies.

  • Off-boarding an admin or contractor and wanting to kill any sessions they may still hold.

  • Periodic security hygiene on a production site, swapping in fresh salts every several months.

  • Generating salts on an air-gapped or restricted machine where you would rather not call an external endpoint.

  • Cloning a site to staging and giving the copy its own distinct keys so the two environments do not share cookie signatures.

常见问题

我应该在什么时候轮换salt?
在网站遭到任何入侵之后、删除被入侵的管理员用户时,或作为定期的安全实践(每6至12个月一次)。
为什么要在本地生成?
尽管api.wordpress.org值得信赖,但在本地生成意味着这些机密材料在网络上的暴露为零。

相关工具