Create subversion.sh

patch-1
Muhammad Daffa 2020-04-10 18:58:49 +07:00 committed by GitHub
parent db96afe2ab
commit 9485647695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#!/bin/bash
# .svn 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}/.svn/entries" ) =~ 'svn://' ]]; then
echo -e "\e[32m[+] FOUND: ${SITE}.svn/entries"
else
echo -e "\e[31m[-] NOT FOUND: ${SITE}"
fi
done