diff --git a/CHANGELOG.md b/CHANGELOG.md index c42018ed..af6c38af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,34 @@ # Changelog ## Master -[Work in progress](https://github.com/wpscanteam/wpscan/compare/2.9.3...master) +[Work in progress](https://github.com/wpscanteam/wpscan/compare/2.9.4...master) + +## Version 2.9.4 +Released: 2018-05-30 + +* Updated dependencies and required ruby version +* Improved CLI output +* Only show readme.html output when wp <= 4.8 #1127 +* Cleanup README.md +* Fix bug "undefined method 'identifier' for nil:NilClass" #1149 +* Since WP 4.7 readme.html only shows major version #1152 +* Add checks for humans.txt and security.text (Thank you @g0tmi1k!) +* Add offline database update support (Thank you @g0tmi1k!) +* Check for API access and /wp-json/'s users output (Thank you @g0tmi1k!) +* Add RSS author information (Thank you @g0tmi1k!) +* Check HTTP status of each value in /robots.txt (Thank you @g0tmi1k!) +* Follow any redirections (e.g. http -> https) (Thank you @g0tmi1k!) +* Lots of other enhancements by @g0tmi1k & WPScan Team + +WPScan Database Statistics: +* Total tracked wordpresses: 319 +* Total tracked plugins: 74611 +* Total tracked themes: 16606 +* Total vulnerable wordpresses: 305 +* Total vulnerable plugins: 1643 +* Total vulnerable themes: 286 +* Total wordpress vulnerabilities: 8327 +* Total plugin vulnerabilities: 2597 +* Total theme vulnerabilities: 352 ## Version 2.9.3 Released: 2017-07-19 diff --git a/lib/common/common_helper.rb b/lib/common/common_helper.rb index 81c8affd..5e7d6049 100644 --- a/lib/common/common_helper.rb +++ b/lib/common/common_helper.rb @@ -28,7 +28,7 @@ WP_VERSIONS_FILE = File.join(DATA_DIR, 'wp_versions.xml') # ~/.wpscan/data/wp MIN_RUBY_VERSION = '2.1.9' -WPSCAN_VERSION = '2.9.4-dev' +WPSCAN_VERSION = '2.9.4' $LOAD_PATH.unshift(LIB_DIR) $LOAD_PATH.unshift(WPSCAN_LIB_DIR)