Files
wpscan/lib/common/models/wp_timthumb/existable.rb
2013-03-19 22:59:20 +01:00

12 lines
222 B
Ruby

# encoding: UTF-8
class WpTimthumb < WpItem
module Existable
def exists_from_response?(response, options = {})
response.code == 400 && response.body =~ /no image specified/i ? true : false
end
end
end