Skip to content

Commit 7d43029

Browse files
carl-albertoCarl AlbertoRyan Marks
authored
Removing exposed salts (#277)
* removing exposed salts * Update to match primary WordPress repository Co-authored-by: Carl Alberto <[email protected]> Co-authored-by: Ryan Marks <[email protected]>
1 parent f7d760e commit 7d43029

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

web/wp-config.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@
8585
*
8686
* @since 2.6.0
8787
*/
88-
define( 'AUTH_KEY', '^J/U[^{cOJxhcmmCq2MX%nUs}i_^7nm[w+VsetLZ[JXW9Un/IiyWVEXk;s}X=?u$' );
89-
define( 'SECURE_AUTH_KEY', 'dT,wlW20L5V3ChmTEHFGVtUE-r&A)y+G%Pnql&eKdVAWvdIr9FO4lh_Gc9ZVn!1|' );
90-
define( 'LOGGED_IN_KEY', '{0E{}k_e7!XRt*}h}nuMP[sKn$gb(O@|[>?bUs}B{>:|+|lL%czE/!Tlc Uk53#:' );
91-
define( 'NONCE_KEY', '|M9$H1t9D@AR6>JM[]?9RoA^dmOCHt6ldAE%x|0 Iqpi+m32>1>?0*_?*#|6f7|W' );
92-
define( 'AUTH_SALT', 'CA-BmAsS|o_P|!I8Wfu%a=qXC;!3p[8]W_:N2{oI]HhpLP(%2]zWLH+aHTHDw9>%' );
93-
define( 'SECURE_AUTH_SALT', 'pi-EA,AOXk*U[VZ|t]R;@K<WMcbD)>k* ;8+hKX:A|$.Z@HL@0`SE?W0:-?-IRd!' );
94-
define( 'LOGGED_IN_SALT', 'e+6%u)u@RZn-$}_Q[N;Na<|A-[Am_$#nhD~}ci:%R&B*oiq<sPF$v)d1r<-V-5W|' );
95-
define( 'NONCE_SALT', 'r%oyx_`[A-~<LB)]I.,^//}/&]a)H|fzk3IUWrZn[L4qf#Pp#lsB-B}+/ai&u,/|' );
88+
define( 'AUTH_KEY', 'put your unique phrase here' );
89+
define( 'SECURE_AUTH_KEY', 'put your unique phrase here' );
90+
define( 'LOGGED_IN_KEY', 'put your unique phrase here' );
91+
define( 'NONCE_KEY', 'put your unique phrase here' );
92+
define( 'AUTH_SALT', 'put your unique phrase here' );
93+
define( 'SECURE_AUTH_SALT', 'put your unique phrase here' );
94+
define( 'LOGGED_IN_SALT', 'put your unique phrase here' );
95+
define( 'NONCE_SALT', 'put your unique phrase here' );
9696

9797
endif;
9898

0 commit comments

Comments
 (0)