iamj0ker / bypass-403

A simple script just made for self use for bypassing 403
1.62k stars 275 forks source link

Line 52 bug #15

Closed jackmmartin closed 8 months ago

jackmmartin commented 1 year ago

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;/"

jackmmartin commented 1 year ago

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

this should also work as quotes aren't required