diff --git a/Exposed Source Code/git.sh b/Exposed Source Code/git.sh new file mode 100644 index 0000000..3be1cd3 --- /dev/null +++ b/Exposed Source Code/git.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# .git Checker + LISTS=$1 + + if [[ ! -f ${LISTS} ]]; then + echo "ERROR: ${LISTS} not found" + echo "usage: bash $0 list.txt" + exit + fi + + for SITE in $(cat $LISTS); + do + if [[ $(curl --connect-timeout 3 --max-time 3 -kLs "${SITE}/.git/HEAD" ) =~ 'ref: refs/heads/master' ]]; then + echo -e "\e[32m[+] FOUND: ${SITE}.git/config" + else + echo -e "\e[31m[-] NOT FOUND: ${SITE}" + fi + +done