Changeset 3431345
- Timestamp:
- 01/02/2026 11:25:00 PM (3 months ago)
- Location:
- wp-guardian/trunk
- Files:
-
- 3 edited
-
modules/obfuscated-script-cleaner.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-guardian.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-guardian/trunk/modules/obfuscated-script-cleaner.php
r3428251 r3431345 82 82 // Safety net: scripts before DOCTYPE (invalid HTML) 83 83 '#^\s*<script[^>]*>.*?</script>\s*(?=<!doctype)#is', 84 85 // Obfuscated malware patterns (matching real-time filter) 86 '#<script[^>]*>.*?(_0x[a-f0-9]{3,}|urshort\.live|atob|eval).*?</script>#is', 87 88 // Hex-encoded urshort.live URLs (matches \x68\x74\x74... patterns) 89 '#<script[^>]*>.*?\\\\x[0-9a-f]{2}.*?urshort.*?</script>#is', 90 91 // Additional obfuscation patterns 92 '#<script[^>]*>.*?String\.fromCharCode.*?</script>#is', 93 '#<script[^>]*>.*?unescape\(.*?</script>#is', 94 '#<script[^>]*>.*?decodeURIComponent.*?</script>#is', 84 95 ]; 85 96 -
wp-guardian/trunk/readme.txt
r3428251 r3431345 7 7 Requires PHP: 7.0 8 8 Requires CP: 2.0 9 Stable tag: 1.8. 09 Stable tag: 1.8.1 10 10 License: GPLv3 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 43 43 44 44 == Changelog == 45 46 = 1.8.1 = 47 * Fix: Obfuscated Script Cleaner now properly detects and removes Trojan:HTML/Redirector.SSF!MTB malware 48 * Enhanced malware detection patterns to match real-time filter capabilities 49 * Add detection for hex-encoded obfuscated scripts and additional obfuscation techniques (String.fromCharCode, unescape, decodeURIComponent) 50 * Obfuscated Script Cleaner now detects _0x obfuscation patterns, atob/eval functions, and urshort.live redirect domains 45 51 46 52 = 1.8.0 = -
wp-guardian/trunk/wp-guardian.php
r3428251 r3431345 4 4 * Plugin URI: https://getbutterfly.com/wordpress-plugins/wp-guardian/ 5 5 * Description: An easy way to harden your website's security effectively. 6 * Version: 1.8. 06 * Version: 1.8.1 7 7 * Author: Ciprian Popescu 8 8 * Author URI: https://getbutterfly.com/ … … 12 12 * 13 13 * WP Guardian 14 * Copyright (C) 2024-202 5Ciprian Popescu (getbutterfly@gmail.com)14 * Copyright (C) 2024-2026 Ciprian Popescu (getbutterfly@gmail.com) 15 15 * Copyright (C) 2016-2017 James Cooper (@jfcby) 16 16 * … … 33 33 } 34 34 35 define( 'DTJWPG_VERSION', '1.8. 0' );35 define( 'DTJWPG_VERSION', '1.8.1' ); 36 36 define( 'DTJWPG_URL', __FILE__ ); 37 37 define( 'DTJWPG_BASENAME', plugin_basename( DTJWPG_URL ) );
Note: See TracChangeset
for help on using the changeset viewer.