Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Is this property spoofable, or 100% trustworthy?

I want to be certain a request is coming from my box only. I have to add this sentence because I can't ask simple questions.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
203 views
Welcome To Ask or Share your Answers For Others

1 Answer

Unless someone manipulates your TCP stack it is fully trustable.

it basically is an analysis of the network stack from the IIS layer on whether the request originated locally - most likely by coming from a 127.0.0.x address (yes, localhost is the whole at that time C network, not just 127.0.0.1).

There is no way to establish a TCp connection with a fake origin, so this data can be trusted.

http://forums.asp.net/t/1065813.aspx/1

indicates via decompiling it checks on 127.0.0.1 and ::1 - both are the common localhost addresses.

Again, and still, this is totally not fakeable unless you manipualte the network stack or the .net framework classes.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...