Sha256: 25aa7e8f7591ffa18bf830815845f70e1b83420408b8b27db0c09daf5d2e9613
Contents?: true
Size: 1.01 KB
Versions: 4
Compression:
Stored size: 1.01 KB
Contents
#!/usr/bin/env ruby =begin Arachni Copyright (c) 2010-2011 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> This is free software; you can copy and distribute and modify this program under the term of the GPL v2.0 License (See LICENSE file for details) Simple shell script to start all systems required for the WebUI. Requires all arachni executables to be in PATH. Original by: Brandon Potter <bpotter8705@gmail.com> Modified by: Tasos Laskos <tasos.laskos@gmail.com> =end # the gemspec doesn't seem to able to handle shell scripts # so we hack around it exec <<END export xterm="xterm -geometry 80X10 -hold" echo "[>] Starting the Arachni Dispatch server..." xterm -T "Arachni Dispatch server" -e "arachni_xmlrpcd" & sleep 5 echo "[>] Starting the Arachni WebUI server..." xterm -T "Arachni WebUI server" -e "arachni_web" & sleep 3 echo "[>] Opening browser..." xdg-open http://127.0.0.1:4567 echo "[>] Hit Ctrl+C to shut everything down." while : do sleep 1 done exit END
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
arachni-0.3 | bin/arachni_web_autostart |
arachni-0.2.4 | bin/arachni_web_autostart |
arachni-0.2.3 | bin/arachni_web_autostart |
arachni-0.2.2.2 | bin/arachni_web_autostart |