Plugin Directory

Changeset 3125416


Ignore:
Timestamp:
07/25/2024 04:42:23 PM (20 months ago)
Author:
wtsec
Message:

2.4.31

  • Internal improvements
Location:
wt-security
Files:
451 added
3 edited

Legend:

Unmodified
Added
Removed
  • wt-security/trunk/lib/modules/logs/Crawler.php

    r3121600 r3125416  
    245245     */
    246246    private static function getMatches($content, $url, $exclude) {
     247
    247248        $matches = [
    248249            'internal' => [],
     
    255256        if($content){
    256257            // Get all the matches.
    257             $pattern = '/(<a.*?href=["\']([^"\']+)["\'].*?>|<script.*?src=["\']([^"\']+)["\'].*?>|<iframe.*?src=["\']([^"\']+)["\'].*?>|onclick=["\']?[^"\']*location.*?["\']?([^"\']+))/i';            preg_match_all($pattern, $content, $all_matches);
     258            $pattern = '/(<a.*?href=["\']([^"\']+)["\'].*?>|<script.*?src=["\']([^"\']+)["\'].*?>|<iframe.*?src=["\']([^"\']+)["\'].*?>|onclick=["\']?[^"\']*location.*?["\']?([^"\']+))/i';
     259            preg_match_all($pattern, $content, $all_matches);
    258260
    259261            $array = [
     
    350352                        $data_type,
    351353                        $datum['page'],
    352                         $datum['link'],
     354                        addslashes($datum['link']),
    353355                        $datum['is_internal']
    354356                );
  • wt-security/trunk/readme.txt

    r3121600 r3125416  
    88Requires PHP: 7.1
    99Requires at least: 6.0
    10 Stable tag: 2.4.30
     10Stable tag: 2.4.31
    1111
    1212WebTotem is a SaaS which provides powerful tools for securing and monitoring your website in one place in easy and flexible way.
     
    8787
    8888== Changelog ==
     89= 2.4.31 =
     90* Internal improvements
     91
    8992= 2.4.30 =
    9093* Fixed link scanning on the WP scan page
  • wt-security/trunk/wt-security.php

    r3121600 r3125416  
    77 * Text Domain: wtotem
    88 * Domain Path: /lang
    9  * Version: 2.4.30
     9 * Version: 2.4.31
    1010 * License: GPL v2 or later
    1111 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
     
    5555 * Current version of the plugin's code.
    5656 */
    57 define('WEBTOTEM_VERSION', '2.4.30');
     57define('WEBTOTEM_VERSION', '2.4.31');
    5858
    5959/**
Note: See TracChangeset for help on using the changeset viewer.