Files
wpscan/lib/wpscan/db/wp_version.rb
2019-07-18 18:52:52 +01:00

14 lines
225 B
Ruby

# frozen_string_literal: true
module WPScan
module DB
# WP Version
class Version < WpItem
# @return [ Hash ]
def self.metadata
@metadata ||= super['wordpress'] || {}
end
end
end
end