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

Categories

0 votes
211 views
in Technique[技术] by (71.8m points)

c# - Request.IsLocal

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...