iamj0ker / bypass-403

A simple script just made for self use for bypassing 403

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Line 52 bug

jackmmartin opened this issue · comments

currently the line is:
curl -s -o /dev/null -iL -w "%{http_code}","%{size_download}" " $1/$2;/"
the space between the quote and $ causes the curl to fail " $1/$2;/"
the following line should do:
curl -s -o /dev/null -iL -w "%{http_code}","%{size_download}" "$1/$2;/"

curl -s -o /dev/null -iL -w "%{http_code}","%{size_download}" $1/$2;/

this should also work as quotes aren't required