Files
wpscan/lib/common/models/wp_timthumb/output.rb

12 lines
206 B
Ruby

# encoding: UTF-8
class WpTimthumb < WpItem
module Output
def output(verbose = false)
puts " | #{vulnerable? ? red('[!] Vulnerable') : green('[i] Not Vulnerable')} #{self}"
end
end
end