Changeset 2481423
- Timestamp:
- 02/25/2021 12:44:55 PM (5 years ago)
- Location:
- wpscan
- Files:
-
- 8 edited
- 1 copied
-
tags/1.14.4 (copied) (copied from wpscan/trunk)
-
tags/1.14.4/app/Account.php (modified) (1 diff)
-
tags/1.14.4/app/Report.php (modified) (3 diffs)
-
tags/1.14.4/readme.txt (modified) (2 diffs)
-
tags/1.14.4/wpscan.php (modified) (1 diff)
-
trunk/app/Account.php (modified) (1 diff)
-
trunk/app/Report.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpscan.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpscan/tags/1.14.4/app/Account.php
r2452411 r2481423 90 90 $defaults = array( 91 91 'plan' => 'None', 92 'limit' => 50,93 'remaining' => 50,92 'limit' => 25, 93 'remaining' => 25, 94 94 'reset' => time(), 95 95 ); -
wpscan/tags/1.14.4/app/Report.php
r2452411 r2481423 81 81 $null_text = __( 'No known vulnerabilities found to affect this version', 'wpscan' ); 82 82 $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' );84 83 85 84 if ( empty( $report ) || ! isset( $report[ $type ] ) ) { … … 120 119 echo empty( $list ) ? $null_text : join( '<br>', $list ); 121 120 122 } elseif ( $report['not_found'] ) {123 echo esc_html( $not_found_text );124 121 } else { 125 122 echo esc_html( $null_text ); … … 284 281 } 285 282 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'] ) ) { 287 287 $icon = 'dashicons-no-alt is-gray'; 288 288 } elseif ( empty( $report['vulnerabilities'] ) ) { -
wpscan/tags/1.14.4/readme.txt
r2458925 r2481423 4 4 Requires at least: 3.4 5 5 Tested up to: 5.6 6 Stable tag: 1.14. 36 Stable tag: 1.14.4 7 7 Requires PHP: 5.5 8 8 License: GPLv3 … … 90 90 91 91 == Changelog == 92 93 = 1.14.4 = 94 * Use new free API defaults 95 * Remove "Not found in database" message 92 96 93 97 = 1.14.3 = -
wpscan/tags/1.14.4/wpscan.php
r2458798 r2481423 4 4 * Plugin URI: http://wordpress.org/plugins/wpscan/ 5 5 * Description: WPScan WordPress Security Scanner. Scans your system for security vulnerabilities listed in the WPScan Vulnerability Database. 6 * Version: 1.14. 36 * Version: 1.14.4 7 7 * Author: WPScan Team 8 8 * Author URI: https://wpscan.com/ -
wpscan/trunk/app/Account.php
r2452411 r2481423 90 90 $defaults = array( 91 91 'plan' => 'None', 92 'limit' => 50,93 'remaining' => 50,92 'limit' => 25, 93 'remaining' => 25, 94 94 'reset' => time(), 95 95 ); -
wpscan/trunk/app/Report.php
r2452411 r2481423 81 81 $null_text = __( 'No known vulnerabilities found to affect this version', 'wpscan' ); 82 82 $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' );84 83 85 84 if ( empty( $report ) || ! isset( $report[ $type ] ) ) { … … 120 119 echo empty( $list ) ? $null_text : join( '<br>', $list ); 121 120 122 } elseif ( $report['not_found'] ) {123 echo esc_html( $not_found_text );124 121 } else { 125 122 echo esc_html( $null_text ); … … 284 281 } 285 282 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'] ) ) { 287 287 $icon = 'dashicons-no-alt is-gray'; 288 288 } elseif ( empty( $report['vulnerabilities'] ) ) { -
wpscan/trunk/readme.txt
r2458925 r2481423 4 4 Requires at least: 3.4 5 5 Tested up to: 5.6 6 Stable tag: 1.14. 36 Stable tag: 1.14.4 7 7 Requires PHP: 5.5 8 8 License: GPLv3 … … 90 90 91 91 == Changelog == 92 93 = 1.14.4 = 94 * Use new free API defaults 95 * Remove "Not found in database" message 92 96 93 97 = 1.14.3 = -
wpscan/trunk/wpscan.php
r2458798 r2481423 4 4 * Plugin URI: http://wordpress.org/plugins/wpscan/ 5 5 * Description: WPScan WordPress Security Scanner. Scans your system for security vulnerabilities listed in the WPScan Vulnerability Database. 6 * Version: 1.14. 36 * Version: 1.14.4 7 7 * Author: WPScan Team 8 8 * Author URI: https://wpscan.com/
Note: See TracChangeset
for help on using the changeset viewer.