Changed vuln data references to url

This commit is contained in:
ethicalhack3r
2014-07-31 11:56:14 +02:00
parent 08dfa4cab2
commit 8d2ec115f5
12 changed files with 620 additions and 22 deletions

View File

@@ -159,7 +159,7 @@ def json(file)
begin
JSON.parse(content)
rescue => e
puts "[ERROR] In JSON file parsing #{e} #{e.backtrace}"
#puts "[ERROR] In JSON file parsing #{e} #{e.backtrace}"
end
end

View File

@@ -46,10 +46,4 @@ class WpItem
return false
end
end
# @return [ String ]
def identifier
@name
end
end

View File

@@ -11,5 +11,10 @@ class WpPlugin < WpItem
@vulns_file
end
# @return [ String ]
def identifier
@name
end
end
end

View File

@@ -10,6 +10,10 @@ class WpTheme < WpItem
end
@vulns_file
end
# @return [ String ]
def identifier
@name
end
end
end