Safety

What are the possible security risks that you might face when developing a basic application. Tell someone to tell me about the best methods to reduce such risks.

as in a router, any user can find out what services are calling

+3
source share
3 answers

The secret to protecting the Backbone application or any other client is that you do not rely on client-side verification. Remember to check on the server.

, , Backbone 100 , , . , 100 , . , , ..

, , . . ( ) .

-, . , HTTPS .

+6

, . : ( ), , .

, () .

+5

-, , - .

, /, , , cokkie.

, , http://mydomain.com/app, "/app", cookie.

, back-end - nodejs:

app.get('/app', function(req, res, next){
  if(!loggedIn(req,res))
    sendError(res);
  else
    next();
});

, loggedIn fo, , sessionID cookie. , , " ".

, , , .

HTTPS - .

+1

All Articles