16 lines
271 B
Ruby
16 lines
271 B
Ruby
# encoding: UTF-8
|
|
|
|
class WpTheme < WpItem
|
|
module Vulnerable
|
|
# @return [ String ] The path to the file containing vulnerabilities
|
|
def vulns_file
|
|
@vulns_file ||= THEMES_FILE
|
|
end
|
|
|
|
# @return [ String ]
|
|
def identifier
|
|
@name
|
|
end
|
|
end
|
|
end
|