Files
wpscan/lib/common/models/wp_plugin/vulnerable.rb
2015-09-06 13:32:13 +01:00

16 lines
273 B
Ruby

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