-
-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unexpected 503 error #184
Comments
Can you try some of the request concurrency options listed in |
I tried slamming every flag that I felt would decrease the concurrency and ended up with the following: Are there any flags that you would recommend me trying? Did I miss a flag? |
Hmmm. Actually, it seems to be a bug in Muffet. Even when I set exactly the same set of request headers as same as > go run . --header 'user-agent: curl/7.79.1' https://www.php.net
GET / HTTP/1.1
User-Agent: curl/7.79.1
Host: www.php.net
Accept: */*
failed to fetch root page: 503
exit status 1 This is part of the response: <i class="icon-icon myra-server"></i> <i class="status-icon myra-ok"></i></div><p class="error-info"><span class="what">Host</span> <span class="status status-working">Working</span></p></div></div></div><div class="row clearfix"><div class="error-desc"><div class="col one-half"><div class="error-desc-text what-happened"><h2>What happened?</h2><p>You ran into a security check to verify the validity of your request.</p></div></div><div class="col one-half"><div class="error-desc-text what-do"><h2>What can I do?</h2><h3>If you are a visitor of this website:</h3><p>You must confirm that you are human.</p><h3>If you are the owner of this website:</h3><p>Please check your security settings.</p></div></div></div></div></body></html> So it's apparently blocked by security restrictions at |
I am running
muffet
version2.4.4
When running the following command:
muffet https://www.php.net
I get the following return:
failed to fetch root page: 503
This is unexpected because when I run a curl command on the same link:
curl -I https://www.php.net
This rendered the following output:
I have also tried using the default Go http client to get this URL and it also gets a
200
response. Any tips on why this might be happening withmuffet
and how to potentially remediate this problem would be much appreciated!The text was updated successfully, but these errors were encountered: