Update comment in wordpress/version.rb
The comment 'All versions are vulnerable' makes sense on line 163 where there is no introduced or fixed version. On line 175 though there is a fixed version, just no introduced version. Adjusting comment text.bug/bundler_fix
parent
c6806b4e5f
commit
c441ff81a1
|
@ -172,7 +172,7 @@ module Msf::HTTP::Wordpress::Version
|
|||
# Version older than fixed version
|
||||
if Gem::Version.new(version) < Gem::Version.new(fixed_version)
|
||||
if vuln_introduced_version.nil?
|
||||
# All versions are vulnerable
|
||||
# Older than fixed version, no vuln introduction date, flag as vuln
|
||||
return Msf::Exploit::CheckCode::Appears
|
||||
# vuln_introduced_version provided, check if version is newer
|
||||
elsif Gem::Version.new(version) >= Gem::Version.new(vuln_introduced_version)
|
||||
|
|
Loading…
Reference in New Issue