Descripción
Usando el plugin Salt Shaker, podrás fortalecer la seguridad de tu WordPress. Te ayuda a cambiar las claves secretas de WP de forma manual o automática.
Try it out on a free dummy site.
Why Use SALT Keys in WordPress?
When you log in to WordPress, you have the option to remain logged in long-term. To achieve this, WordPress stores your login data in cookies instead of in a PHP session. Malicious individuals can hijack your cookies through various means, leaving your website vulnerable.
To make it harder for attackers to use cookie data, you can take advantage of SALT keys. WordPress SALT keys encrypt your password, making it harder to guess. What’s more, it’s next to impossible for hackers to simply ‘unscramble’ the result in order to get at the original password.
What people says about Salt Shaker
WPBeginner
Kinsta
WPEngine
Elgenat Themes
Hostinger
¿Te gusta Salt Shaker? Déjanos una valoración de 5 estrellas.
Características de Salt Shaker
- Mejora la seguridad de tu WordPress.
- Fácil de usar, con unos mínimos ajustes. Configúralo y olvídate.
- Cambio manual e inmediato de las claves secretas de WP.
- Establece una programación automatizada para el cambio de las claves secretas de WP.
¿Eres desarrollador?
No dudes en hacer una bifurcación del proyecto en GitHub y envía tus contribuciones a través de una solicitud de validación.
Instalación
- Sube la carpeta
salt-shaker
al directorio/wp-content/plugins/
. - Activa el plugin a través del menú
Plugins
en WordPress. - Navega hasta el menú
Herramientas > Salt Shaker
para configurar el plugin.
Preguntas frecuentes
-
Nothing happens?
-
Make sure that
wp-config.php
file has the salt keys. If for any reason the keys aren’t there; you can always generate a set of keys from this link https://api.wordpress.org/secret-key/1.1/salt/ and add it to yourwp-config.php
file. Once that’s done, the plugin will be able to shake them based on your settings. -
¿El plugin no funciona o tiene un fallo?
-
Publica información detallada sobre el problema en el foro de soporte y trabajaremos para solucionarlo.
-
Custom wp-config.php location?
-
You can use this filter to define the file location
salt_shaker_salts_file
. Example:
In this example, the new location of the config file is in a folder that’s outside WordPress location in a folder calledwpsecret
. Make sure to replace it with your secret location 😉function salt_shaker_new_file($salts_file_name) { $salts_file_name = '../wpsecret/wp-config'; return $salts_file_name; } add_filter('salt_shaker_salts_file', 'salt_shaker_new_file');
Reseñas
Colaboradores y desarrolladores
«Salt Shaker» es un software de código abierto. Las siguientes personas han colaborado con este plugin.
Colaboradores«Salt Shaker» ha sido traducido a 6 idiomas locales. Gracias a los traductores por sus contribuciones.
Traduce «Salt Shaker» a tu idioma.
¿Interesado en el desarrollo?
Revisa el código , echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.
Registro de cambios
2.0.1
- Improved salt generation and replacement
- WordPress 6.8 compatibility
Read the full changelog here