Plugin Directory

Changeset 2481423


Ignore:
Timestamp:
02/25/2021 12:44:55 PM (5 years ago)
Author:
ethicalhack3r
Message:

New 1.14.4 version release

Location:
wpscan
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpscan/tags/1.14.4/app/Account.php

    r2452411 r2481423  
    9090        $defaults = array(
    9191            'plan'      => 'None',
    92             'limit'     => 50,
    93             'remaining' => 50,
     92            'limit'     => 25,
     93            'remaining' => 25,
    9494            'reset'     => time(),
    9595        );
  • wpscan/tags/1.14.4/app/Report.php

    r2452411 r2481423  
    8181        $null_text        = __( 'No known vulnerabilities found to affect this version', 'wpscan' );
    8282        $not_checked_text = __( 'Not checked yet. Click the Run All button to run a scan', 'wpscan' );
    83         $not_found_text   = __( 'Not found in database', 'wpscan' );
    8483
    8584        if ( empty( $report ) || ! isset( $report[ $type ] ) ) {
     
    120119            echo empty( $list ) ? $null_text : join( '<br>', $list );
    121120
    122         } elseif ( $report['not_found'] ) {
    123             echo esc_html( $not_found_text );
    124121        } else {
    125122            echo esc_html( $null_text );
     
    284281        }
    285282
    286         if ( ! isset( $report['vulnerabilities'] ) ) {
     283
     284        if ( array_key_exists( 'not_found', $report ) ) {
     285            $icon = 'dashicons-yes is-green';
     286        } elseif ( ! isset( $report['vulnerabilities'] ) ) {
    287287            $icon = 'dashicons-no-alt is-gray';
    288288        } elseif ( empty( $report['vulnerabilities'] ) ) {
  • wpscan/tags/1.14.4/readme.txt

    r2458925 r2481423  
    44Requires at least: 3.4
    55Tested up to: 5.6
    6 Stable tag: 1.14.3
     6Stable tag: 1.14.4
    77Requires PHP: 5.5
    88License: GPLv3
     
    9090
    9191== Changelog ==
     92
     93= 1.14.4 =
     94* Use new free API defaults
     95* Remove "Not found in database" message
    9296
    9397= 1.14.3 =
  • wpscan/tags/1.14.4/wpscan.php

    r2458798 r2481423  
    44 * Plugin URI:    http://wordpress.org/plugins/wpscan/
    55 * Description:   WPScan WordPress Security Scanner. Scans your system for security vulnerabilities listed in the WPScan Vulnerability Database.
    6  * Version:       1.14.3
     6 * Version:       1.14.4
    77 * Author:        WPScan Team
    88 * Author URI:    https://wpscan.com/
  • wpscan/trunk/app/Account.php

    r2452411 r2481423  
    9090        $defaults = array(
    9191            'plan'      => 'None',
    92             'limit'     => 50,
    93             'remaining' => 50,
     92            'limit'     => 25,
     93            'remaining' => 25,
    9494            'reset'     => time(),
    9595        );
  • wpscan/trunk/app/Report.php

    r2452411 r2481423  
    8181        $null_text        = __( 'No known vulnerabilities found to affect this version', 'wpscan' );
    8282        $not_checked_text = __( 'Not checked yet. Click the Run All button to run a scan', 'wpscan' );
    83         $not_found_text   = __( 'Not found in database', 'wpscan' );
    8483
    8584        if ( empty( $report ) || ! isset( $report[ $type ] ) ) {
     
    120119            echo empty( $list ) ? $null_text : join( '<br>', $list );
    121120
    122         } elseif ( $report['not_found'] ) {
    123             echo esc_html( $not_found_text );
    124121        } else {
    125122            echo esc_html( $null_text );
     
    284281        }
    285282
    286         if ( ! isset( $report['vulnerabilities'] ) ) {
     283
     284        if ( array_key_exists( 'not_found', $report ) ) {
     285            $icon = 'dashicons-yes is-green';
     286        } elseif ( ! isset( $report['vulnerabilities'] ) ) {
    287287            $icon = 'dashicons-no-alt is-gray';
    288288        } elseif ( empty( $report['vulnerabilities'] ) ) {
  • wpscan/trunk/readme.txt

    r2458925 r2481423  
    44Requires at least: 3.4
    55Tested up to: 5.6
    6 Stable tag: 1.14.3
     6Stable tag: 1.14.4
    77Requires PHP: 5.5
    88License: GPLv3
     
    9090
    9191== Changelog ==
     92
     93= 1.14.4 =
     94* Use new free API defaults
     95* Remove "Not found in database" message
    9296
    9397= 1.14.3 =
  • wpscan/trunk/wpscan.php

    r2458798 r2481423  
    44 * Plugin URI:    http://wordpress.org/plugins/wpscan/
    55 * Description:   WPScan WordPress Security Scanner. Scans your system for security vulnerabilities listed in the WPScan Vulnerability Database.
    6  * Version:       1.14.3
     6 * Version:       1.14.4
    77 * Author:        WPScan Team
    88 * Author URI:    https://wpscan.com/
Note: See TracChangeset for help on using the changeset viewer.