Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I secure my ASP.NET AJAX application?

Ajax seems to give a better user experience, but I'm not so sure if I take the right steps to protect and secure my application.

Is there a checklist of things I must pay attention to?

like image 912
ileon Avatar asked Oct 15 '22 08:10

ileon


1 Answers

AJAX applications has the same vulnerabilities than other kind of web application:

  • XSS
  • SQL Injection
  • Privilege Escalation
  • Information Disclosure
  • etc.

But if you want to avoid these common "safe" feel that an AJAX application can give you because normal users will no see the undergoing request you should check the OWASP AJAX Security Guidelines.

like image 95
Pedro Laguna Avatar answered Oct 18 '22 05:10

Pedro Laguna