Sinisterly
I am getting a 403 Forbidden error. - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Computers (https://sinister.ly/Forum-Computers)
+--- Forum: Networking (https://sinister.ly/Forum-Networking)
+--- Thread: I am getting a 403 Forbidden error. (/Thread-I-am-getting-a-403-Forbidden-error)

Pages: 1 2 3


I am getting a 403 Forbidden error. - darkninja1980 - 09-08-2018

I am getting a 403 Forbidden error. How can I fix this error?


RE: I am getting a 403 Forbidden error. - mothered - 09-10-2018

Is this on your own site, or one you're trying to access?

Please elaborate.


RE: I am getting a 403 Forbidden error. - darkninja1980 - 09-10-2018

(09-10-2018, 05:14 AM)mothered Wrote: Is this on your own site, or one you're trying to access?

Please elaborate.

no but I was just curious if there was a fix for it ?


RE: I am getting a 403 Forbidden error. - Cr3aTor - 09-10-2018

(09-10-2018, 03:23 PM)darkninja1980 Wrote:
(09-10-2018, 05:14 AM)mothered Wrote: Is this on your own site, or one you're trying to access?

Please elaborate.

no but I was just curious if there was a fix for it ?

To really solve such a problem, you need to provide more information about the environment and the context. There is no such a 1 shot solution for those kind of errors.
If you could elaborate as @mothered said we could try to help you.


RE: I am getting a 403 Forbidden error. - darkninja1980 - 09-10-2018

(09-10-2018, 05:20 PM)Cr3aTor Wrote:
(09-10-2018, 03:23 PM)darkninja1980 Wrote:
(09-10-2018, 05:14 AM)mothered Wrote: Is this on your own site, or one you're trying to access?

Please elaborate.

no but I was just curious if there was a fix for it ?

To really solve such a problem, you need to provide more information about the environment and the context. There is no such a 1 shot solution for those kind of errors.
If you could elaborate as @mothered said we could try to help you.

I understand your point. well let me ask my friend what sites that he got the errors from.


RE: I am getting a 403 Forbidden error. - redspyder - 09-10-2018

On a general note it likely means their site is down or something is up with your firewall if you have one.


RE: I am getting a 403 Forbidden error. - mothered - 09-10-2018

What's the exact error message?

For example:
* HTTP 403
* 403 Forbidden
* Forbidden: You do not have permission to access this directory on this server
* Error 403 Forbidden

And so forth.


RE: I am getting a 403 Forbidden error. - darkninja1980 - 09-10-2018

(09-10-2018, 08:55 PM)mothered Wrote: What's the exact error message?

For example:
* HTTP 403
* 403 Forbidden
* Forbidden: You do not have permission to access this directory on this server
* Error 403 Forbidden

And so forth.
my friend is getting this error!
* Forbidden: You do not have permission to access this directory on this server


RE: I am getting a 403 Forbidden error. - phyrrus9 - 09-11-2018

(09-10-2018, 06:54 PM)redspyder Wrote: On a general note it likely means their site is down or something is up with your firewall if you have one.

no, that's not true. 404 and 500 are generally used if the website is down. 401 and 403 are used to tell the receiving party that they either do not have the required credentials, are not authenticated at all, or are not allowed to access the specified resource.

generally speaking, if you're getting a 403, you're doing something that you're not supposed to and the client code isn't even receiving your requests (server software filter). If you're getting a 401, check your headers, you're likely missing the Authorization field.


RE: I am getting a 403 Forbidden error. - mothered - 09-11-2018

(09-11-2018, 02:47 AM)phyrrus9 Wrote: generally speaking, if you're getting a 403, you're doing something that you're not supposed to and the client code isn't even receiving your requests (server software filter).

Precisely.

Moreover, It can also be a WAF blocking requests.

(09-10-2018, 11:55 PM)darkninja1980 Wrote: my friend is getting this error!
* Forbidden: You do not have permission to access this directory on this server

If permissions have been set server-side/back-end, unless you have access to alter/modify the permissions, you cannot do anything solely from a client-side standpoint.