From 61381b7168d1fb47af723d8df112adfd8c4cb93a Mon Sep 17 00:00:00 2001 From: ethicalhack3r Date: Mon, 16 Mar 2015 10:49:54 +0100 Subject: [PATCH] Update changelog, change version number #784 --- CHANGELOG.md | 43 ++++++++++++++++++++++++++++++++++++- lib/common/common_helper.rb | 2 +- 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45acac29..cc600ff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,47 @@ # Changelog ## Master -[Work in progress](https://github.com/wpscanteam/wpscan/compare/2.6...master) +[Work in progress](https://github.com/wpscanteam/wpscan/compare/2.7...master) + +## Version 2.7 +Released: 2015-03-16 + +New +* Detects version in release date format +* Copyrights updated +* WP version detection from stylesheets +* New license +* Global HTTP request counter +* Add security-protection plugin detection +* Add GHOST warning if XMLRPC enabled +* Update databases from wpvulndb.com +* Enumerate usernames from WP <= 3.0 (thanks berotti3) + +Removed +* README.txt + +General core +* Update to Ruby 2.2.1 +* Update to Ruby 2.2.0 +* Add addressable gem +* Update Typhoeus gem to 0.7.0 +* IDN support: encode non-ascii domain names (thanks dctabuyz) +* Improve page hash calculation (thanks dctabuyz) +* Version detection regex improved + +Fixed issues +* Fix #745 - Plugin version pattern in readme.txt file not detected +* Fix #746 - Add a global counter for all active requests to server. +* Fix #747 - Add 'security-protection' plugin to wp_login_protection module +* Fix #753 - undefined method `round' for "10":String for request or connect timeouts +* Fix #760 - typhoeus issue (infinite loop) + +WPScan Database Statistics: +* Total vulnerable versions: 89 +* Total vulnerable plugins: 953 +* Total vulnerable themes: 329 +* Total version vulnerabilities: 1070 +* Total plugin vulnerabilities: 1451 +* Total theme vulnerabilities: 378 ## Version 2.6 Released: 2014-12-19 diff --git a/lib/common/common_helper.rb b/lib/common/common_helper.rb index 1958c63e..6db7733d 100644 --- a/lib/common/common_helper.rb +++ b/lib/common/common_helper.rb @@ -34,7 +34,7 @@ WP_VERSIONS_XSD = File.join(DATA_DIR, 'wp_versions.xsd') LOCAL_FILES_XSD = File.join(DATA_DIR, 'local_vulnerable_files.xsd') USER_AGENTS_FILE = File.join(DATA_DIR, 'user-agents.txt') -WPSCAN_VERSION = '2.6' +WPSCAN_VERSION = '2.7' $LOAD_PATH.unshift(LIB_DIR) $LOAD_PATH.unshift(WPSCAN_LIB_DIR)