I ve setup a web server and can exchange data between it and my iPhone by using JSON.
JSON是否已经加密? 我试图让人们能够使用。 我不知道如何确保用户的安全。 我现在请他们提供一些独特的信息,说明他们及其GET的请求。
但是,难道有人会轻而易举,然后把GET的要求转嫁给服务器,以获得同样的信息?
这样做的正确途径是什么?
I ve setup a web server and can exchange data between it and my iPhone by using JSON.
JSON是否已经加密? 我试图让人们能够使用。 我不知道如何确保用户的安全。 我现在请他们提供一些独特的信息,说明他们及其GET的请求。
但是,难道有人会轻而易举,然后把GET的要求转嫁给服务器,以获得同样的信息?
这样做的正确途径是什么?
JSON没有自动加密,没有。
a. 配备SSH的服务器。 http://strong>should 防止了大多数MITM型攻击。 如果你对客户(浏览器)的再攻击感到极为担忧,你很可能需要 oAuth+一种安全的不收货。
任何安全措施都不会保护你100%,你必须损害安全,否则就会失败。
If you are worried about MITM attacks, most likely someone sniffing requests on your network and then replaying them, you could set up SSL and send the JSON request via that, which would prevent the attack. The only other thing is that via GET your security variables will be exposed in the URL. Whether it is ideal form is what kind of information you are transferring and what other authentication you are using.
http://joekuan.word.press.com/ 201005/08/quick-步s-on-ging-apache-sl-php-json-on-freebsd-8-0/
I installed this instant messenger program called IM+ that keeps your accounts online even when you exit the application (you know... touch: only one app at a time) it accepts push deliveries to ...
I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...
Suppose I am writing a server for a particular network protocol. If I know that the client is running on a Windows machine, is it possible for my server to authenticate the Windows user that owns the ...
The infrastructure team wants to update the authentication protocol to NTLMv2 and Kerberos. Will this affect CRM 4.0 on-premise installation. What would need to be changed in order to use the ...
I m developing an ASP.NET MVC site that utilizes forms authentication for part of the application. During development, I need to be able to give external parties access to a development server hosting ...
If I have a type like: public class Context { public Context() { } public IQueryable<Record> Records { get { if (user == someone) //psuedocode ...
We recently attempted to add ip address validation to our website s login security. So in addition to having a cookie with valid credentials, we checked that your ip address on page request matched ...
While looking into forms authorizing/authentication, I found that it is possible to do role based authorizing by adding an array of roles to a FormsAuthenticationTicket. That way I can write User....