From af85d6f81ff72a67ecb8dbcf0bb42f575016d50c Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Wed, 3 Oct 2018 05:38:57 -0700 Subject: [PATCH 1/3] Add seclists tool. --- bin/install_tool | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/install_tool b/bin/install_tool index 18d783c..7b18703 100755 --- a/bin/install_tool +++ b/bin/install_tool @@ -117,6 +117,9 @@ case ${TOOL} in ${DESTDIR}/hak5.txt.bz2 bunzip2 ${DESTDIR}/hak5.txt.bz2 ;; + seclists) + git clone https://github.com/danielmiessler/SecLists.git ${DESTDIR} + ;; gcloud) mkdir -p ${DESTDIR} gtemp=`mktemp -d` From eb2d6e776fee9cbebd1871260c9d3abbd7e806dc Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Wed, 3 Oct 2018 05:39:42 -0700 Subject: [PATCH 2/3] Remove ptf from default install script. --- install.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install.sh b/install.sh index bd413ba..a4a1ffc 100755 --- a/install.sh +++ b/install.sh @@ -129,9 +129,6 @@ postinstall() { if [ -d $HOME/.vim/bundle/Vundle.vim ] ; then vim +VundleInstall +qall fi - # Install other useful tools - install_git https://github.com/trustedsec/ptf.git ${HOME}/bin/ptframework && \ - add_bin_symlink ${HOME}/bin/ptframework/ptf } ssh_key_already_installed() { From e52cf7ae004390242ff69be02fd4d4d4add9dc74 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Wed, 3 Oct 2018 05:45:07 -0700 Subject: [PATCH 3/3] Add ptf to install_tool. --- bin/install_tool | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/install_tool b/bin/install_tool index 7b18703..350fec8 100755 --- a/bin/install_tool +++ b/bin/install_tool @@ -213,6 +213,10 @@ case ${TOOL} in chmod +x ${DESTDIR}/apktool add_bin_symlink apktool ;; + ptf) + src="https://github.com/trustedsec/ptf.git" + git clone ${src} ${DESTDIR} + ;; *) echo "Unknown tool: ${TOOL}" >/dev/stderr exit 1