class Wafalyzer::Waf::AlertLogic

Defined in:

wafalyzer/wafs/alertlogic.cr

Constant Summary

PATTERNS = {/.>requested.url.cannot.be.found<./i, /proceed.to.homepage/i, /back.to.previous.page/i, /we(?:'re|.are)?sorry.{1,2}but.the.page.you.are.looking.for.cannot/i, /reference.id.?/i, /page.has.either.been.removed.{1,2}renamed/i}

Class Method Summary

Instance Method Summary

Instance methods inherited from class Wafalyzer::Waf

clone clone, product : String product, to_json(json : JSON::Builder) to_json, to_s(io : IO) : Nil to_s

Constructor methods inherited from class Wafalyzer::Waf

find(klass : Waf.class) : Waf find, new(product : String)
new
new

Class methods inherited from class Wafalyzer::Waf

detect(response : HTTP::Client::Response) : Array(Waf) detect, find?(klass : Waf.class) : Waf | Nil find?, instances instances, instances=(instances : Hash(::Wafalyzer::Waf.class, Wafalyzer::Waf)) instances=

Constructor methods inherited from module Wafalyzer::Waf::DSL

new new

Instance methods inherited from module Wafalyzer::Waf::Matcher

matches?(response : HTTP::Client::Response) : Bool matches?

Class Method Detail

def self.instance : Waf #

[View source]
def self.instance? : Waf | Nil #

[View source]

Instance Method Detail

def matches?(response : HTTP::Client::Response) : Bool #
Description copied from module Wafalyzer::Waf::Matcher

Returns true if given response matches defined assertions, false otherwise.


[View source]