Create wordpress.sh
parent
31866b9b29
commit
3f52ab8978
|
@ -0,0 +1,19 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Log Wordpress 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}/wp-content/debug.log" ) =~ 'PHP Notice: ' ]]; then
|
||||||
|
echo -e "\e[32m[+] FOUND: ${SITE}/wp-content/debug.log"
|
||||||
|
else
|
||||||
|
echo -e "\e[31m[-] NOT FOUND: ${SITE}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
done
|
Loading…
Reference in New Issue