Plugin Directory

Changeset 3221609


Ignore:
Timestamp:
01/13/2025 01:31:05 PM (13 months ago)
Author:
wordpressdr
Message:

1.2.2 Bug fix

Location:
wpinfecscanlite/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wpinfecscanlite/trunk/readme.txt

    r3208294 r3221609  
    44Requires at least: 4.6
    55Tested up to: 6.7
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5454
    5555== Changelog ==
     56
     57= 1.2.2 =
     58
     59Bug fix.
    5660
    5761= 1.2 =
  • wpinfecscanlite/trunk/scannerdata/wpinfectlitescanner.php

    r3196032 r3221609  
    420420                    $goscan = false;
    421421                }
     422               
     423                if(strpos($file,'waf-blocklog') !== false){
     424                    $goscan = false;
     425                }
     426               
     427                if(strpos($file,'malware-keywords.') !== false){
     428                    $goscan = false;
     429                }
     430               
     431                if(strpos($file,'package.json') !== false){
     432                    $goscan = false;
     433                }
     434               
     435                if (preg_match("/all-in-one-wp-migration\/storage/i", $dir) && preg_match("/\.json/i", $file)) {
     436                    $goscan = false;
     437                }
    422438
    423439                $path = $dir . $file;
  • wpinfecscanlite/trunk/scannerdata/wpinfectlitesecurity.php

    r3208294 r3221609  
    426426                    $hasaction = true;
    427427                }
     428                $action2 = str_replace( '-', '_', $action );
     429                if ( has_action( "wp_ajax_{$action2}" ) ) {
     430                    $hasaction = true;
     431                }
     432                if ( has_action( "wp_ajax_nopriv_{$action2}" ) ){
     433                    $hasaction = true;
     434                }
    428435                if($hasaction==false){
    429436                   
  • wpinfecscanlite/trunk/wpinfecscanlite.php

    r3208294 r3221609  
    33Plugin Name: WPDoctor Malware Scanner & Vulnerability Checker Lite
    44description: Based on the most frequently detected malware detection patterns, this plug-in can exhaustively scan program files on the site to detect malware and vulnerability. Also record hacking attempts against your site and block IPs.
    5 Version: 1.2.1
     5Version: 1.2.2
    66Text Domain: wpinfecscanlite
    77Author: wordpressdr
Note: See TracChangeset for help on using the changeset viewer.