PluginProbe
WebTotem Security / 2.4.12
WebTotem Security v2.4.12
3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 2.2.4 All 109 releases
wt-security / wt-security.php

wt-security.php in WebTotem Security 2.4.12, at wt-security.php

167 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: WebTotem Security
4 * Description: The <a href="https://wtotem.com/" target="_blank">WebTotem</a> Security plugin monitors websites and prevents website attacks with the help of special internal and external utilities.
5 * Author URI: https://wtotem.com/
6 * Author: WebTotem
7 * Text Domain: wtotem
8 * Domain Path: /lang
9 * Version: 2.4.12
10 *
11 * PHP version 7.1
12 *
13 * @copyright 2021-2022 WebTotem
14 * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL2
15 * @link https://wordpress.org/plugins/wt-security
16 */
17
18 /**
19 * Main file to control the plugin.
20 */
21 define('WEBTOTEM_INIT', true);
22
23 /**
24 * Plugin dependencies.
25 *
26 * list of required WordPress functions for the plugin to work.
27 */
28 $wtotem_dependencies = array(
29 'wp',
30 'wp_die',
31 'add_action',
32 'remove_action',
33 'wp_remote_get',
34 'wp_remote_post',
35 );
36
37 // Stopping execution if dependencies are not met.
38 foreach ($wtotem_dependencies as $dependency) {
39 if (!function_exists($dependency)) {
40 // Report invalid access.
41 header('HTTP/1.1 403 Forbidden');
42 die("Protected By WebTotem!");
43 }
44 }
45
46 // Stopping execution if the ABSPATH constant is not available
47 if (!defined('ABSPATH')) {
48 // Report invalid access.
49 header('HTTP/1.1 403 Forbidden');
50 die("Protected By WebTotem!");
51 }
52
53 /**
54 * Current version of the plugin's code.
55 */
56 define('WEBTOTEM_VERSION', '2.4.12');
57
58 /**
59 * The name of the folder where the plugin's files will be located.
60 */
61 define("WEBTOTEM_PLUGIN_FOLDER", basename(dirname(__FILE__)));
62
63 /**
64 * The fullpath where the plugin's files will be located.
65 */
66 define('WEBTOTEM_PLUGIN_PATH', WP_PLUGIN_DIR . '/' . WEBTOTEM_PLUGIN_FOLDER);
67
68 /**
69 * The local URL where the plugin's files and assets are served.
70 */
71 define('WEBTOTEM_URL', rtrim(plugin_dir_url(__FILE__), '/'));
72
73 /**
74 * The domain name of the current site, without protocol and www.
75 */
76 define("WEBTOTEM_SITE_DOMAIN", str_replace(['http://', 'https://', '//', '://', 'www.'], '', get_site_url()));
77
78 /**
79 * Remote URL where the public WebTotem API service is running.
80 */
81 if (!defined('WEBTOTEM_API_URL')) {
82 define('WEBTOTEM_API_URL', 'https://api.wtotem.com/graphql');
83 }
84
85 /**
86 * Unique name of the plugin through out all the code.
87 */
88 define("WEBTOTEM", 'wtotem');
89
90 /* Load plugin translations */
91 function wtotem_load_plugin_textdomain() {
92 load_plugin_textdomain('wtotem', false, basename(dirname(__FILE__)) . '/lang/');
93 }
94 add_action('plugins_loaded', 'wtotem_load_plugin_textdomain');
95
96
97 /* Load all classes before anything else. */
98 require_once 'lib/Helper.php';
99 require_once 'lib/API.php';
100 require_once 'lib/DB.php';
101 require_once 'lib/Cache.php';
102 require_once 'lib/login/Login.php';
103 require_once 'lib/Request.php';
104 require_once 'lib/Interface.php';
105 require_once 'lib/AgentManager.php';
106 require_once 'lib/Option.php';
107 require_once 'lib/Template.php';
108 require_once 'lib/Country.php';
109 require_once 'lib/Ajax.php';
110
111 /* Load page and ajax handlers */
112 require_once 'src/PageHandler.php';
113
114 /* Load common variables and triggers */
115 require_once 'src/Common.php';
116
117 /**
118 * Uninstalled the plugin
119 *
120 * @return void
121 */
122 function wtotemUninstall() {
123
124 if (WebTotemOption::getPluginSettings('hide_wp_version')) {
125 WebTotemOption::restoreReadme();
126 }
127
128 if(WebTotem::isMultiSite()){
129 WebTotemOption::clearAllHosts();
130 }
131
132 /* Delete all agents files and directories */
133 WebTotemAgentManager::removeAgents();
134
135 /* Delete settings from the database */
136 WebTotemDB::uninstall();
137
138 }
139
140 register_uninstall_hook(__FILE__, 'wtotemUninstall');
141
142
143 /**
144 * Deactivation plugin
145 *
146 * @return void
147 */
148 function wtotemDeactivation() {
149 if (WebTotemOption::getPluginSettings('hide_wp_version')) {
150 WebTotemOption::restoreReadme();
151 }
152 }
153 register_deactivation_hook( __FILE__, 'wtotemDeactivation' );
154
155 /**
156 * Deactivation plugin
157 *
158 * @return void
159 */
160 function wtotemActivation() {
161 if (WebTotemOption::getPluginSettings('hide_wp_version')) {
162 WebTotemOption::hideReadme();
163 }
164 }
165
166 register_activation_hook( __FILE__, 'wtotemActivation' );
167