Sha256: 2c0402e78c979a018712489fe470e18d035e2a73c61216b7630bece8dba5d6aa
Contents?: true
Size: 720 Bytes
Versions: 5
Compression:
Stored size: 720 Bytes
Contents
#!/usr/bin/env ruby =begin Copyright 2010-2022 Ecsypno <http://www.ecsypno.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 $LOAD_PATH.unshift( File.expand_path( File.dirname( __FILE__ ) + '/../lib' ) ) require 'arachni' require_relative '../ui/cli/output' include Arachni include Utilities include UI::Output if ARGV.empty? puts <<EOHELP #{BANNER} Usage: #{__FILE__} SCRIPT Pre-loads Arachni's libraries and loads and runs a Ruby script. (Call the 'mute' method to mute system output.) EOHELP exit end load ARGV.shift
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
arachni-1.6.1.3 | bin/arachni_script |
arachni-1.6.1.2 | bin/arachni_script |
arachni-1.6.1.1 | bin/arachni_script |
arachni-1.6.1 | bin/arachni_script |
arachni-1.6.0 | bin/arachni_script |