Files
wpscan/lib/common/models/wp_plugin/vulnerable.rb
2014-07-31 11:14:22 +02:00

16 lines
269 B
Ruby

# encoding: UTF-8
class WpPlugin < WpItem
module Vulnerable
# @return [ String ] The path to the file containing vulnerabilities
def vulns_file
unless @vulns_file
@vulns_file = PLUGINS_VULNS_FILE
end
@vulns_file
end
end
end