class Koji::Plugins::FuelPHP
Public Instance Methods
evidence_list()
click to toggle source
# File lib/koji/plugins/fuelphp.rb, line 10 def evidence_list @evidence_list ||= [].tap do |out| out << "The website contains FuelPHP's Profiler" if profiler end end
profiler()
click to toggle source
# File lib/koji/plugins/fuelphp.rb, line 6 def profiler website.doc&.at_css("#openProfiler > a") end
score()
click to toggle source
# File lib/koji/plugins/fuelphp.rb, line 16 def score evidence_list.empty? ? 0 : 100 end