Done !
| Server IP : 54.36.91.62 / Your IP : 216.73.216.38 Web Server : Apache System : Linux webm008.cluster127.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : awaywithxm ( 25098) PHP Version : 7.0.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awaywithxm/www/wp-content/plugins/secupress/inc/data/ |
Upload File : |
<?php
/**
* Plugin Name: {{PLUGIN_NAME}} Salt Keys
* Description: Good Security Keys for each of your blogs of your network (multisite only), auto-reseting each month.
* Version: 1.0.1
* License: GPLv2
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
*
* Copyright 2012-2016 SecuPress
*/
defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' );
define( 'SECUPRESS_SALT_KEYS_ACTIVE', true );
global $blog_id;
$hash_1 = '{{HASH1}}';
$hash_2 = '{{HASH2}}';
$file_str = __FILE__ . date( 'Ym' );
$hash_1 .= $hash_2;
$file_str .= $hash_2;
$main_keys = array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT', );
foreach ( $main_keys as $main_key ) {
if( ! defined( $main_key ) ) {
define( $main_key, sha1( 'secupress' . $main_key . md5( $main_key . $file_str ) ) . md5( $main_key . $file_str ) );
}
}
unset( $file_str, $main_key, $main_keys, $hash_1, $hash_2 );