meg icon indicating copy to clipboard operation
meg copied to clipboard

Getting request failed: unsupported protocol scheme error.

Open urakesh661 opened this issue 6 years ago • 7 comments

Hi,

I am getting request failed: unsupported protocol scheme error for all the hosts even though they are alive and resolve when accessed through browser.

Error :

request failed: Get sadsa.test.com*: unsupported protocol scheme ""

Can you please suggest.

Thanks

urakesh661 avatar Apr 13 '20 16:04 urakesh661

Probably you don't have the scheme properly set.

giany avatar Apr 22 '20 14:04 giany

@giany provide with example please, because I got the same issue too.

storenth avatar Apr 24 '20 11:04 storenth

I think we need to use httprobe first to construct hostFiles with http/https Suggest to close the issue

storenth avatar Apr 24 '20 12:04 storenth

Same issue here. I have a list of alive hosts with both http https schems. and i'm getting the same error. request failed: Get alive.subdomain.com/: unsupported protocol scheme ""

Thanks

m0nk3y-s3c avatar May 15 '20 05:05 m0nk3y-s3c

Same issue here. I have used httprobe which will have http and https but and i'm getting the same error. request failed: Get "/robots.txt": unsupported protocol scheme "" request failed: Get "": unsupported protocol scheme ""

Any fix here? seems to be many users are reporting

rajeshk28 avatar May 20 '20 17:05 rajeshk28

I had the same error on Void Linux. I changed the hosts.txt,paths.txt to hosts and paths without the extension. This fixed the problem for me.

junnlikestea avatar May 29 '20 01:05 junnlikestea

you can use this bash script

for domain in $(cat hosts | httpx); do meg -concurrency 20 /robots.txt  "http://$domain" ; done;

You Should Install httpx Also . (Optional)

mhassani97 avatar Mar 05 '22 16:03 mhassani97