PluginProbe
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder / 51.1.83
King Addons for Elementor – 100+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce Builder, Mega Menu, Popup Builder v51.1.83
51.1.84 51.1.85 51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 51.1.46 All 39 releases
← All changes | includes/widgets/Login_Register_Form/Security_Manager.php +3 -3 51.1.6451.1.83 View file →
@@ -58,9 +58,9 @@
58 58 $attempts++;
59 59 set_transient($transient_key, $attempts, self::LOCKOUT_DURATION);
60 60
61 61 // Log security event
62 - error_log("King Addons Security: Failed {$action} attempt #{$attempts} from IP {$ip_address}");
62 + // error_log("King Addons Security: Failed {$action} attempt #{$attempts} from IP {$ip_address}");
63 63
64 64 return $attempts;
65 65 }
66 66
@@ -192,9 +192,9 @@
192 192 }
193 193
194 194 // Validate email domain for additional security
195 195 if (!empty($sanitized['email']) && !self::is_safe_email_domain($sanitized['email'])) {
196 - error_log("King Addons Security: Suspicious email domain from {$provider}: {$sanitized['email']}");
196 + // error_log("King Addons Security: Suspicious email domain from {$provider}: {$sanitized['email']}");
197 197 }
198 198
199 199 return $sanitized;
200 200 }
@@ -221,9 +221,9 @@
221 221 ]);
222 222
223 223 foreach ($suspicious_patterns as $pattern) {
224 224 if (preg_match($pattern, $text_to_check)) {
225 - error_log("King Addons Security: Suspicious registration pattern detected: {$pattern}");
225 + // error_log("King Addons Security: Suspicious registration pattern detected: {$pattern}");
226 226 return true;
227 227 }
228 228 }
229 229