# File lib/rack/protection/json_csrf.rb, line 16
      def call(env)
        request               = Request.new(env)
        status, headers, body = app.call(env)

        if has_vector? request, headers
          warn env, "attack prevented by #{self.class}"
          react(env)
        else
          [status, headers, body]
        end
      end