PluginProbe
SecuPress with Simple SSL – Simple and Performant Security / 2.6.1
SecuPress with Simple SSL – Simple and Performant Security v2.6.1
2.6.3 trunk 2.3.20.1 2.4 2.5 2.5.1 2.6 2.6.1 2.6.2
secupress / secupress.php

secupress.php in SecuPress with Simple SSL – Simple and Performant Security 2.6.1, at secupress.php

539 lines 19.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: SecuPress Free with Simple SSL – Simple and Performant Security
4 * Plugin URI: https://secupress.me
5 * Description: More than a plugin, the guarantee of a protected website by experts.
6 * Author: SecuPress
7 * Author URI: https://secupress.me
8 * Version: 2.6.1
9 * Code Name: Makeshift
10 * Network: true
11 * Contributors: SecuPress, juliobox, GregLone
12 * License: GPLv2
13 * Domain Path: /languages/
14 * Requires at least: 5.4
15 * Requires PHP: 7.0
16 * Copyright 2012-2026 SecuPress
17 *
18 * ██████╗███████╗ █████╗██╗ ██╗██████╗ ██████╗ ███████╗ ██████╗ ██████╗ ███╗ ███╗███████╗
19 * ██╔════╝██╔════╝██╔═══╝██║ ██║██╔══██╗██╔══██╗██╔════╝██╔════╝██╔════╝ ████╗ ████║██╔════╝
20 * ███████╗█████╗ ██║ ██║ ██║██████╔╝██████╔╝█████╗ ███████╗███████╗ ██╔████╔██║█████╗
21 * ╚════██║██╔══╝ ██║ ██║ ██║██╔═══╝ ██╔═██╝ ██╔══╝ ╚════██║╚════██║ ██║╚██╔╝██║██╔══╝
22 * ███████║███████╗ █████╗╚██████╔╝██║ ██║ ██╗███████╗███████║███████║██╗██║ ╚═╝ ██║███████╗
23 * ╚══════╝╚══════╝ ╚════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝ ╚═════╝╚═╝╚═╝ ╚═╝╚══════╝
24 */
25
26 defined( 'ABSPATH' ) or die( 'Something went wrong.' );
27
28 $secupress_is_playground = isset( $_SERVER['SERVER_NAME'] ) && 'playground.wordpress.net' === $_SERVER['SERVER_NAME'];
29 add_action( 'admin_notices', 'secupress_does_not_work_on_playground' );
30 /* :) */
31 function secupress_does_not_work_on_playground() {
32 global $secupress_is_playground;
33 if ( ! $secupress_is_playground ) {
34 return;
35 }
36 echo '<div class="error"><p><strong>SecuPress</strong> does not work on <code>https://playground.wordpress.net/</code>.<br>Use <a href="https://demo.tastewp.com/secupress/">https://demo.tastewp.com/secupress/</a> to test the Free Version.<br>You can also <a href="https://secupress.me/pricing/">purchase a Pro Version</a> to test it (we refund during 14 days).</p></div>'; // DO NOT TRANSLATE
37 }
38 if ( $secupress_is_playground ) {
39 return; // DO NOT LOAD SECUPRESS
40 }
41 /** --------------------------------------------------------------------------------------------- */
42 /** DEFINES ===================================================================================== */
43 /** --------------------------------------------------------------------------------------------- */
44
45 // Common constants
46 if ( ! defined( 'SECUPRESS_FILE' ) ) {
47 define( 'SECUPRESS_FILE', __FILE__ );
48 }
49 if ( file_exists( plugin_dir_path( __FILE__ ) . 'defines.php' ) ) {
50 require_once( plugin_dir_path( __FILE__ ) . 'defines.php' );
51 }
52
53 define( 'SECUPRESS_ACTIVE_SUBMODULES' , 'secupress_active_submodules' );
54 define( 'SECUPRESS_SETTINGS_SLUG' , 'secupress_settings' );
55 define( 'SECUPRESS_SCAN_TIMES' , 'secupress_scanners_times' );
56 define( 'SECUPRESS_WP_CORE_FILES_HASHES' , 'secupress_wp_core_files_hashes' );
57 define( 'SECUPRESS_FULL_FILETREE' , 'secupress_full_filetree' );
58 define( 'SECUPRESS_DATABASE_MALWARES' , 'secupress_database_malwares' );
59 define( 'SECUPRESS_FIX_DISTS' , 'secupress_fix_dists' );
60 define( 'SECUPRESS_BAN_IP' , 'secupress_ban_ip' );
61 define( 'SECUPRESS_USER_PROTECTION' , 'secupress_user_protection' );
62 define( 'SECUPRESS_WHITE_IP' , 'secupress_whitelist_ip' );
63 define( 'SECUPRESS_ATTACKS' , 'secupress_attacks_log' );
64 define( 'SECUPRESS_BAD_THEMES' , 'secupress_bad_themes__vuln' );
65 define( 'SECUPRESS_OLD_THEMES' , 'secupress_bad_themes__old' );
66 define( 'SECUPRESS_CLOSED_THEMES' , 'secupress_bad_themes__closed' );
67 define( 'SECUPRESS_BAD_PLUGINS' , 'secupress_bad_plugins__vuln' );
68 define( 'SECUPRESS_OLD_PLUGINS' , 'secupress_bad_plugins__old' );
69 define( 'SECUPRESS_CLOSED_PLUGINS' , 'secupress_bad_plugins__closed' );
70 define( 'SECUPRESS_RATE_URL' , 'https://wordpress.org/support/view/plugin-reviews/secupress?filter=5#topic' );
71 define( 'SECUPRESS_WEB_MAIN' , 'https://secupress.me/' );
72 define( 'SECUPRESS_API_MAIN' , 'https://secupress.me/wp-json/api/' );
73 define( 'SECUPRESS_MODULES_PATH' , SECUPRESS_INC_PATH . 'modules/' );
74 define( 'SECUPRESS_ADMIN_PATH' , SECUPRESS_INC_PATH . 'admin/' );
75 define( 'SECUPRESS_CLASSES_PATH' , SECUPRESS_INC_PATH . 'classes/' );
76 define( 'SECUPRESS_ADMIN_SETTINGS_MODULES', SECUPRESS_ADMIN_PATH . 'modules/' );
77 define( 'SECUPRESS_PLUGIN_URL' , plugin_dir_url( SECUPRESS_FILE ) );
78 define( 'SECUPRESS_FREE_URL' , SECUPRESS_PLUGIN_URL . 'free/' );
79 define( 'SECUPRESS_FRONT_URL' , SECUPRESS_FREE_URL . 'front/' );
80 define( 'SECUPRESS_ADMIN_URL' , SECUPRESS_FREE_URL . 'admin/' );
81 define( 'SECUPRESS_ASSETS_URL' , SECUPRESS_PLUGIN_URL . 'assets/' );
82 define( 'SECUPRESS_ADMIN_CSS_URL' , SECUPRESS_ASSETS_URL . 'admin/css/' );
83 define( 'SECUPRESS_ADMIN_JS_URL' , SECUPRESS_ASSETS_URL . 'admin/js/' );
84 define( 'SECUPRESS_ADMIN_IMAGES_URL' , SECUPRESS_ASSETS_URL . 'admin/images/' );
85 define( 'SECUPRESS_PHP_MIN' , '7.0' );
86 define( 'SECUPRESS_WP_MIN' , '4.9' );
87 define( 'SECUPRESS_INT_MAX' , PHP_INT_MAX - 20 );
88
89 if ( defined( 'SECUPRESS_API_EMAIL' ) && defined( 'SECUPRESS_API_KEY' ) && ! defined( 'SECUPRESS_HIDE_API_KEY' ) ) {
90 define( 'SECUPRESS_HIDE_API_KEY', true );
91 }
92
93 /** --------------------------------------------------------------------------------------------- */
94 /** INIT ======================================================================================== */
95 /** --------------------------------------------------------------------------------------------- */
96
97 /**
98 * Requires hotfixes first because it's hot.
99 */
100 require_once( SECUPRESS_INC_PATH . 'functions/hotfixes.php' );
101
102 /**
103 * All the stuff for the plugin activation and deactivation.
104 */
105 require_once( SECUPRESS_INC_PATH . 'activation.php' );
106
107
108 add_action( 'init', 'secupress_init_i18n', 0 );
109 /**
110 * Load the i18n here since WP6.7 is doing sh*t
111 *
112 * @since 2.2.6
113 * @author Julio Potier
114 */
115 function secupress_init_i18n() {
116 // Load translations.
117 secupress_load_plugin_textdomain_translations();
118 }
119
120 add_action( 'plugins_loaded', 'secupress_init', 0 );
121 /**
122 * Tell WP what to do when the plugin is loaded.
123 *
124 * @since 2.2.6 wp-login.php || is_admin()
125 * @author Julio Potier
126 * @since 1.0
127 * @author Grégory Viguier
128 */
129 function secupress_init() {
130 global $pagenow;
131 // Nothing to do if autosave.
132 if ( defined( 'DOING_AUTOSAVE' ) ) {
133 return;
134 }
135
136 // Functions.
137 secupress_load_functions();
138
139 // Last constants.
140 if ( secupress_is_pro() ) {
141 define( 'SECUPRESS_PLUGIN_NAME', esc_html( secupress_get_option( 'wl_plugin_name', 'SecuPress' ) ) );
142 } else {
143 define( 'SECUPRESS_PLUGIN_NAME', 'SecuPress' );
144 }
145 define( 'SECUPRESS_PLUGIN_SLUG', sanitize_title( SECUPRESS_PLUGIN_NAME ) );
146
147 // Hooks.
148 require_once( SECUPRESS_INC_PATH . 'network-options-autoload.php' );
149 require_once( SECUPRESS_INC_PATH . 'common.php' );
150 require_once( SECUPRESS_INC_PATH . 'admin-bar.php' );
151
152 // Cleanup leftovers periodically.
153 SecuPress_Cleanup_Leftovers::get_instance();
154
155 if ( 'wp-login.php' === $pagenow || is_admin() ) {
156 if ( is_multisite() ) {
157 // Hooks for multisite.
158 require_once( SECUPRESS_ADMIN_PATH . 'multisite/centralize-blog-options.php' );
159 require_once( SECUPRESS_ADMIN_PATH . 'multisite/settings.php' );
160 }
161
162 // Notices.
163 SecuPress_Admin_Notices::get_instance();
164 SecuPress_Admin_Notices::enqueue_script();
165
166 // Pro upgrade.
167 SecuPress_Admin_Pro_Upgrade::get_instance();
168
169 // Hooks.
170 require_once( SECUPRESS_ADMIN_PATH . 'options.php' );
171 require_once( SECUPRESS_ADMIN_PATH . 'settings.php' );
172 require_once( SECUPRESS_ADMIN_PATH . 'admin.php' );
173 require_once( SECUPRESS_ADMIN_PATH . 'ajax-post-callbacks.php' );
174 }
175 require_once( SECUPRESS_ADMIN_PATH . 'notices.php' );
176 require_once( SECUPRESS_INC_PATH . 'migrations.php' );
177
178 /**
179 * Fires when SecuPress is correctly loaded.
180 *
181 * @since 1.0
182 */
183 do_action( 'secupress.loaded' );
184 // Load the upgrader after the load of our plugins, SecuPress is still considered "loaded" even without this file since it's not usefull for security
185 if ( is_admin() ) {
186 require_once( SECUPRESS_ADMIN_PATH . 'upgrader.php' );
187 secupress_upgrader();
188 }
189 }
190
191 add_action( 'secupress.loaded', 'secupress_load_plugins' );
192 /**
193 * Load modules.
194 *
195 * @author Grégory Viguier
196 * @since 1.0
197 */
198 function secupress_load_plugins() {
199 // All modules.
200 $modules = secupress_get_modules();
201
202 if ( $modules ) {
203 foreach ( $modules as $key => $dummy ) {
204 if ( secupress_has_pro() ) {
205 $file = SECUPRESS_PRO_MODULES_PATH . sanitize_key( $key ) . '/tools.php';
206
207 if ( file_exists( $file ) ) {
208 require_once( $file );
209 }
210 }
211
212 $file = SECUPRESS_MODULES_PATH . sanitize_key( $key ) . '/tools.php';
213
214 if ( file_exists( $file ) ) {
215 require_once( $file );
216 }
217
218 if ( ! is_admin() ) {
219 continue;
220 }
221
222 if ( secupress_has_pro() ) {
223 $file = SECUPRESS_PRO_MODULES_PATH . sanitize_key( $key ) . '/callbacks.php';
224
225 if ( file_exists( $file ) ) {
226 require_once( $file );
227 }
228 }
229
230 $file = SECUPRESS_MODULES_PATH . sanitize_key( $key ) . '/callbacks.php';
231
232 if ( file_exists( $file ) ) {
233 require_once( $file );
234 }
235 }
236 }
237
238 // OK, this one is a bit lonely.
239 require_once( SECUPRESS_MODULES_PATH . 'discloses/tools.php' );
240
241 // Active sub-modules.
242 $modules = secupress_get_active_submodules();
243
244 if ( $modules ) {
245 foreach ( $modules as $module => $plugins ) {
246 foreach ( $plugins as $plugin ) {
247 if ( secupress_is_pro() || ! secupress_submodule_is_pro( $module, $plugin ) ) {
248 $file_path = secupress_get_submodule_file_path( $module, $plugin );
249 if ( is_array( $file_path ) ) {
250 foreach ( $file_path as $path ) {
251 if ( file_exists( $path ) ) {
252 require_once( $path );
253 }
254 }
255 } else {
256 if ( file_exists( $file_path ) ) {
257 require_once( $file_path );
258 }
259 }
260 }
261 }
262 }
263 }
264
265 $has_activation = false;
266
267 if ( is_admin() && secupress_get_site_transient( 'secupress_activation' ) ) {
268 $has_activation = true;
269
270 secupress_delete_site_transient( 'secupress_activation' );
271
272 /**
273 * Fires once SecuPress is activated, after the SecuPress's plugins are loaded.
274 *
275 * @since 1.0
276 * @see `secupress_activation()`
277 */
278 do_action( 'secupress.plugins.activation' );
279 }
280
281 if ( secupress_is_pro() && is_admin() && secupress_get_site_transient( 'secupress_pro_activation' ) ) {
282 $has_activation = true;
283
284 secupress_delete_site_transient( 'secupress_pro_activation' );
285
286 /**
287 * Fires once SecuPress is activated, after the SecuPress's plugins are loaded.
288 *
289 * @since 1.1.4
290 * @see `secupress_pro_activation()`
291 */
292 do_action( 'secupress.pro.plugins.activation' );
293 }
294
295 if ( $has_activation ) {
296 /**
297 * Fires once SecuPress or SecuPress is activated, after the SecuPress's plugins are loaded.
298 *
299 * @since 1.1.4
300 */
301 do_action( 'secupress.all.plugins.activation' );
302 }
303 // Autovalidate license if constants are set.
304 if ( ! secupress_has_pro_license() && defined( 'SECUPRESS_API_EMAIL' ) && defined( 'SECUPRESS_API_KEY' ) ) {
305 if ( ! function_exists( 'secupress_global_settings_activate_pro_license' ) ) {
306 include( SECUPRESS_MODULES_PATH . 'welcome/callbacks.php' );
307 }
308 $args = array();
309 $options = get_site_option( SECUPRESS_SETTINGS_SLUG );
310 $args['install_time'] = isset( $options['install_time'] ) && -1 !== (int) $options['install_time'] ? $options['install_time'] : time();
311 $args['consumer_email'] = SECUPRESS_API_EMAIL;
312 $args['consumer_key'] = SECUPRESS_API_KEY;
313 secupress_global_settings_activate_pro_license( $args );
314 }
315
316 /**
317 * Fires once all our plugins/submodules has been loaded.
318 *
319 * @since 1.0
320 */
321 do_action( 'secupress.plugins.loaded' );
322 /**
323 * Fires once all our plugins/submodules has been loaded in front-office or ajax.
324 *
325 * @since 2.2.6
326 */
327 if ( ! is_admin() || wp_doing_ajax() ) {
328 do_action( 'secupress.plugins.loaded.front' );
329 }
330 /**
331 * Fires once all our plugins/submodules has been loaded in back-office.
332 *
333 * @since 2.2.6
334 */
335 if ( is_admin() && ! wp_doing_ajax() ) {
336 do_action( 'secupress.plugins.loaded.back' );
337 }
338 }
339
340 /**
341 * Check is the $locale if a FR one
342 *
343 * @author Julio Potier
344 * @since 2.2
345 *
346 * @param (string) $locale The locale to be tested
347 *
348 * @return (bool) True if $locale is fr_FR (france) or fr_BE (belgium) or fr_CA (canada)
349 **/
350 function secupress_locale_is_FR( $locale ) {
351 return 'fr_FR' === $locale || 'fr_CA' === $locale || 'fr_BE' === $locale;
352 }
353
354 /**
355 * Check is the $locale if a DE one
356 *
357 * @author Julio Potier
358 * @since 2.2.6
359 *
360 * @param (string) $locale The locale to be tested
361 * @return (bool) True if $locale is de_DE, de_DE_formal, de_CH_informal, de_AT, de_CH
362 **/
363 function secupress_locale_is_DE( $locale ) {
364 return 'de_DE' === $locale || 'de_DE_formal' === $locale || 'de_CH_informal' === $locale || 'de_AT' === $locale || 'de_CH' === $locale;
365 }
366
367 /**
368 * Include files that contain our functions.
369 *
370 * @since 2.2.6 wp-login.php || is_admin()
371 * @author Julio Potier
372 * @since 1.2.3
373 * @since 1.2.5 Includes requirement checks.
374 * @author Grégory Viguier
375 */
376 function secupress_load_functions() {
377 global $is_iis7, $wp_version, $pagenow;
378 static $done = false;
379
380 if ( $done ) {
381 return;
382 }
383 $done = true;
384
385 /**
386 * Check requirements.
387 */
388 // Check php version.
389 if ( version_compare( phpversion(), SECUPRESS_PHP_MIN ) < 0 ) {
390 $plugin = plugin_basename( SECUPRESS_FILE );
391
392 if ( current_filter() !== 'activate_' . $plugin ) {
393 require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
394 deactivate_plugins( SECUPRESS_FILE, true );
395 }
396
397 secupress_load_plugin_textdomain_translations();
398
399 wp_die( sprintf( __( '<strong>%1$s</strong> requires PHP %2$s minimum, your website is actually running version %3$s.', 'secupress' ), 'SecuPress', '<code>' . SECUPRESS_PHP_MIN . '</code>', '<code>' . phpversion() . '</code>' ) );
400 }
401
402 // Check WordPress version.
403 if ( version_compare( $wp_version, SECUPRESS_WP_MIN ) < 0 ) {
404 $plugin = plugin_basename( SECUPRESS_FILE );
405
406 if ( current_filter() !== 'activate_' . $plugin ) {
407 require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
408 deactivate_plugins( SECUPRESS_FILE, true );
409 }
410
411 secupress_load_plugin_textdomain_translations();
412
413 wp_die( sprintf( __( '<strong>%1$s</strong> requires WordPress %2$s minimum, your website is actually running version %3$s.', 'secupress' ), 'SecuPress', '<code>' . SECUPRESS_WP_MIN . '</code>', '<code>' . $wp_version . '</code>' ) );
414 }
415
416 /**
417 * Require our functions.
418 */
419 require_once( SECUPRESS_INC_PATH . 'functions/common.php' );
420 require_once( SECUPRESS_INC_PATH . 'functions/compat.php' );
421 require_once( SECUPRESS_INC_PATH . 'functions/deprecated.php' );
422 require_once( SECUPRESS_INC_PATH . 'functions/3rdparty.php' );
423 require_once( SECUPRESS_INC_PATH . 'functions/formatting.php' );
424 require_once( SECUPRESS_INC_PATH . 'functions/options.php' );
425 require_once( SECUPRESS_INC_PATH . 'functions/modules.php' );
426 require_once( SECUPRESS_INC_PATH . 'functions/db.php' );
427 require_once( SECUPRESS_INC_PATH . 'functions/ip.php' );
428 require_once( SECUPRESS_INC_PATH . 'functions/files.php' );
429 require_once( SECUPRESS_INC_PATH . 'functions/htaccess.php' );
430 require_once( SECUPRESS_INC_PATH . 'functions/widgets.php' );
431
432 if ( $is_iis7 ) {
433 require_once( SECUPRESS_INC_PATH . 'functions/iis7.php' );
434 }
435
436 // The Singleton class.
437 secupress_require_class( 'Singleton' );
438
439 // Cleanup leftovers periodically.
440 secupress_require_class( 'Cleanup_Leftovers' );
441 // The Scanner results class.
442 secupress_require_class( 'Scanner_Results' );
443
444 // Admin side but need when running cron.
445 require_once( SECUPRESS_ADMIN_PATH . 'functions/settings.php' );
446 require_once( SECUPRESS_ADMIN_PATH . 'functions/scan-fix.php' );
447
448 if ( 'wp-login.php' !== $pagenow && ! is_admin() ) {
449 return;
450 }
451
452 if ( is_multisite() ) {
453 // Functions for multisite.
454 require_once( SECUPRESS_ADMIN_PATH . 'multisite/options.php' );
455 }
456
457 // The notices class.
458 secupress_require_class( 'Admin', 'Notices' );
459
460 // The Pro upgrade class.
461 secupress_require_class( 'Admin', 'Offer_Migration' );
462 secupress_require_class( 'Admin', 'Pro_Upgrade' );
463 secupress_require_class( 'Admin', 'Pointers' );
464
465 // Functions for the admin side.
466 require_once( SECUPRESS_ADMIN_PATH . 'functions/admin.php' );
467 require_once( SECUPRESS_ADMIN_PATH . 'functions/options.php' );
468 require_once( SECUPRESS_ADMIN_PATH . 'functions/ajax-post.php' );
469 require_once( SECUPRESS_ADMIN_PATH . 'functions/modules.php' );
470 require_once( SECUPRESS_ADMIN_PATH . 'functions/notices.php' );
471 }
472
473
474 /** --------------------------------------------------------------------------------------------- */
475 /** I18N ======================================================================================== */
476 /** --------------------------------------------------------------------------------------------- */
477
478 add_filter( 'load_textdomain_mofile', 'secupress_load_own_i18n', 11, 2 );
479 /**
480 * Load our own i18n to prevent too long strings or spelling errors from voluteers at translate.wp.org, sorry guys.
481 *
482 * @since 2.2.6 Usage of secupress_locale_is_DE()
483 * @since 2.2 Usage of secupress_locale_is_FR()
484 * @since 2.0.3 fr_BE & fr_CA = fr_FR
485 * @since 2.0
486 * @author Julio Potier
487 *
488 * @param (string) $mofile The file to be loaded
489 * @param (string) $domain The desired textdomain
490 *
491 * @return (string) $mofile
492 **/
493 function secupress_load_own_i18n( $mofile, $domain ) {
494 if ( 'secupress' === $domain ) {
495 $locale = apply_filters( 'plugin_locale', determine_locale(), $domain );
496 if ( ! function_exists( 'determine_locale' ) ) { // WP 5.0.
497 $determined_locale = is_admin() ? get_user_locale() : get_locale();
498 } else {
499 $determined_locale = determine_locale();
500 }
501 $locale = apply_filters( 'plugin_locale', $determined_locale, $domain );
502 if ( secupress_locale_is_FR( $locale ) ) {
503 $locale = 'fr_FR';
504 } elseif ( secupress_locale_is_DE( $locale ) ) {
505 $locale = 'de_DE';
506 }
507 $mofile = WP_PLUGIN_DIR . '/' . dirname( plugin_basename( SECUPRESS_FILE ) ) . '/languages/' . $domain . '-' . $locale . '.mo';
508 }
509 return $mofile;
510 }
511 /**
512 * Translations for the plugin textdomain.
513 *
514 * @author Grégory Viguier
515 * @since 1.0
516 */
517 function secupress_load_plugin_textdomain_translations() {
518 static $done = false;
519
520 if ( $done ) {
521 return;
522 }
523 $done = true;
524
525 load_plugin_textdomain( 'secupress', false, dirname( plugin_basename( SECUPRESS_FILE ) ) . '/languages' );
526 /**
527 * Fires right after the plugin text domain is loaded.
528 *
529 * @since 1.0
530 */
531 do_action( 'secupress.plugin_textdomain_loaded' );
532
533 // Make sure Poedit keeps our plugin headers.
534 /** Translators: Plugin Name of the plugin/theme */
535 __( 'SecuPress Free with Simple SSL – Simple and Performant Security', 'secupress' );
536 /** Translators: Description of the plugin/theme */
537 __( 'Protect your WordPress with SecuPress, analyze and ensure the safety of your website daily.', 'secupress' );
538 }
539