0
防止主機重定向的最佳方法是什麼?防止主機重定向
例如,說我有一些僞代碼:
string result = downloadStr("http://mywebsite.com/login.php?pass=whatever&username=whatever");
if(result == "true")
return success_login;
else
return failed_login;
我可以很容易地只是去和編輯我的「主人」文件重定向「mywebsite.com」到我的本地主機,並且總是有它返回'真'。這個問題以前沒有問過,因爲它不是安全問題?
我能想到的會做這樣的事情的最好方法:
string ip = get_website_ip("http://mywebsite.com/");
if(ip != "216.250.121.107")
{
//Host redirection detected.
}
else
{
//It's all good.
}
在你的重定向檢測(比如說十次)中,我仍然可以修改我的防火牆或路由器,以將流量重定向到該IP到我的服務器。 – GoldenNewby 2012-03-14 04:08:01