1
Is there any way to access a directory of a site that returns a 403 Forbiden error?
Is there any way to do this by Curl or wget?
I need to access this site it only returns me this error:
1
Is there any way to access a directory of a site that returns a 403 Forbiden error?
Is there any way to do this by Curl or wget?
I need to access this site it only returns me this error:
Browser other questions tagged nginx http-status-code-403
You are not signed in. Login or sign up in order to post.
You want access to a directory, is that it? Already tried to configure in ngnix
autoindex on;
to the directory you want?– Bruno César
Need to generate the key to access the directories ? Secure=zKGJFg-sJoPF_dTS1biOFw==,1443066000 ...would need to know how to generate this key
– user33191
Depending on what is causing this error, it may be configuration in Ngnix, but if the server is like-Unix it may be folder permissions, or it has no access, because this is a server response to an internal lock. All HTTP responses are answers to problems, but you can force them to use even if it is not an "internal problem". For example, error 500 is when a software or module fails and Ngnix or apache cannot answer. -- It is not possible to force pass these answers, in the case of 403 if it is a page with authentication you will have to have the data to authenticate.
– Guilherme Nascimento
http code 403 indicates permission denied.. usually when you need to have an authentication or simply cannot access content.
– Daniel Omine
@Danielomine exactly what I said, however the situation may also occur with folders without permission on like-Unix systems for example
– Guilherme Nascimento