Sha256: b3c42aa435348f57e176391ee13b4f464452e9c231ea44afff23b71c4afdd3f8
Contents?: true
Size: 1.46 KB
Versions: 7
Compression:
Stored size: 1.46 KB
Contents
=begin Copyright 2010-2014 Tasos Laskos <tasos.laskos@arachni-scanner.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end # Pokes and probes all inputs of a given page in order to uncover new input # vectors and performs platforms fingerprinting of responses. # # It also forces Arachni to train itself by analyzing the server responses. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> # @version 0.1.3 class Arachni::Checks::Trainer < Arachni::Check::Base def run # The whole point of this check is to stir things up and find new # stuff, if our page limit has already been reached then we'll just be # wasting bandwidth. return if framework.page_limit_reached? audit( "_arachni_trainer_#{random_seed}", submit: { train: true }, param_flip: true ){} end def self.info { name: 'Trainer', description: %q{ Pokes and probes all inputs of a given page in order to uncover new input vectors. It also forces Arachni to train itself by analyzing the server responses. }, author: 'Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>', elements: [ Element::Form, Element::Link, Element::Cookie, Element::Header ], version: '0.1.3' } end end
Version data entries
7 entries across 7 versions & 1 rubygems