Sha256: 5c3ac957b360be70976b4037ed079dda48cf185739d3851f34014c552663cb99

Contents?: true

Size: 735 Bytes

Versions: 3

Compression:

Stored size: 735 Bytes

Contents

#!/usr/bin/env ruby
=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

$LOAD_PATH.unshift( File.expand_path( File.dirname( __FILE__ ) + '/../lib' ) )

require_relative '../ui/cli/output'
require 'arachni'

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

3 entries across 3 versions & 1 rubygems

Version Path
arachni-1.0.2 bin/arachni_script
arachni-1.0.1 bin/arachni_script
arachni-1.0 bin/arachni_script