Skip to content

Commit

Permalink
Merge pull request #535 from anantshri/develop
Browse files Browse the repository at this point in the history
wget retries limit set to 3.
  • Loading branch information
viyatb committed Jan 19, 2016
2 parents 1266954 + 48c0156 commit b290d4c
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions install/distro-independent.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,32 +6,32 @@

[pip]
directory = /tmp/owtf-install/pip/%(Pid)s
command = command -v pip2 >/dev/null || { wget https://bootstrap.pypa.io/get-pip.py; sudo python get-pip.py;}
command = command -v pip2 >/dev/null || { wget --tries=3 https://bootstrap.pypa.io/get-pip.py; sudo python get-pip.py;}

[Httprint]
directory = %(RootDir)s/tools/restricted/httprint
command = wget http://www.net-square.com/_assets/httprint_linux_301.zip; unzip *.zip; rm -f *.zip;
command = wget --tries=3 http://www.net-square.com/_assets/httprint_linux_301.zip; unzip *.zip; rm -f *.zip;
cp -rf %(RootDir)s/tools/httprint-signatures.txt %(RootDir)s/tools/restricted/httprint/httprint_301/linux

[BIG-IP Decoder]
directory = %(RootDir)s/tools/restricted/decoding/cookies
command = wget http://www.taddong.com/tools/BIG-IP_cookie_decoder.zip; unzip *.zip; rm -f *.zip
command = wget --tries=3 http://www.taddong.com/tools/BIG-IP_cookie_decoder.zip; unzip *.zip; rm -f *.zip

[Hoppy]
directory = %(RootDir)s/tools/restricted/hoppy-1.8.1
command = wget --no-check-certificate https://labs.portcullis.co.uk/download/hoppy-1.8.1.tar.bz2; bunzip2 *; tar xvf *; rm -f *.tar 2> /dev/null
command = wget --tries=3 https://labs.portcullis.co.uk/download/hoppy-1.8.1.tar.bz2; bunzip2 *; tar xvf *; rm -f *.tar 2> /dev/null

[SSL cipher Check]
directory = %(RootDir)s/tools/restricted/ssl/ssl-cipher-check
command = wget http://unspecific.com/ssl/ssl-cipher-check.pl; chmod 700 *
command = wget --tries=3 http://unspecific.com/ssl/ssl-cipher-check.pl; chmod 700 *

[panoptic]
directory = %(RootDir)s/tools/restricted/Panoptic
command = cd %(RootDir)s/tools/restricted; git clone https://github.com/lightos/Panoptic.git

[DNSpider]
directory = %(RootDir)s/tools/restricted/dnspider
command = wget http://www.agarri.fr/docs/wordlists.tgz; wget http://www.agarri.fr/docs/dnsspider-0.6.py; chmod +x dnsspider-0.6.py; tar zxvf wordlists.tgz; rm wordlists.tgz
command = wget --tries=3 http://www.agarri.fr/docs/wordlists.tgz; wget http://www.agarri.fr/docs/dnsspider-0.6.py; chmod +x dnsspider-0.6.py; tar zxvf wordlists.tgz; rm wordlists.tgz

[Local CA for Inbound Proxy]
# This directory cannot exist, so the script will always run. Checks for individual ca.crt and folders is present inside
Expand All @@ -47,15 +47,15 @@ command = sh %(RootDir)s/install/db_config_setup.sh %(RootDir)s

[Zest Jars]
directory = /tmp/owtf-install/zest/%(Pid)s
command = if [ ! -f %(RootDir)s/zest/release.hash ]; then { wget https://api.github.com/repos/owtf/owtf-zest-jars/tarball -O zest-jars.tar.gz; tar zxf zest-jars.tar.gz; cd */.; cp -r * %(RootDir)s/zest/; }; else $(cmp --silent $(cat %(RootDir)s/zest/release.hash) $(wget -O- -q https://raw.githubusercontent.com/owtf/owtf-zest-jars/master/release.hash) > /dev/null || { wget https://api.github.com/repos/owtf/owtf-zest-jars/tarball -O zest-jars.tar.gz; tar zxf zest-jars.tar.gz; cd */.; cp -r * %(RootDir)s/zest/; }); fi
command = if [ ! -f %(RootDir)s/zest/release.hash ]; then { wget --tries=3 https://api.github.com/repos/owtf/owtf-zest-jars/tarball -O zest-jars.tar.gz; tar zxf zest-jars.tar.gz; cd */.; cp -r * %(RootDir)s/zest/; }; else $(cmp --silent $(cat %(RootDir)s/zest/release.hash) $(wget -O- -q https://raw.githubusercontent.com/owtf/owtf-zest-jars/master/release.hash) > /dev/null || { wget https://api.github.com/repos/owtf/owtf-zest-jars/tarball -O zest-jars.tar.gz; tar zxf zest-jars.tar.gz; cd */.; cp -r * %(RootDir)s/zest/; }); fi

[CMS Explorer]
directory = %(RootDir)s/tools/restricted/cms-explorer
command = wget http://cms-explorer.googlecode.com/files/cms-explorer-1.0.tar.bz2; bunzip2 *; tar xvf *; rm -f *.tar 2> /dev/null; sh %(RootDir)s/install/update_convert_cms_explorer_dicts.sh %(RootDir)s
command = wget --tries=3 http://cms-explorer.googlecode.com/files/cms-explorer-1.0.tar.bz2; bunzip2 *; tar xvf *; rm -f *.tar 2> /dev/null; sh %(RootDir)s/install/update_convert_cms_explorer_dicts.sh %(RootDir)s

[SVN Digger Dictionaries]
directory = %(RootDir)s/dictionaries/restricted/svndigger
command = wget https://www.netsparker.com/s/research/SVNDigger.zip; unzip *.zip; rm -f *.zip
command = wget --tries=3 https://www.netsparker.com/s/research/SVNDigger.zip; unzip *.zip; rm -f *.zip

[Raft Dictionaries]
directory = %(RootDir)s/dictionaries/restricted/raft
Expand Down

0 comments on commit b290d4c

Please sign in to comment.