OWASP top 10 web app security risks mitigation in AngularJS

1.3k views Asked by At

I'm using HDIV for JSF and Spring MVC applications to mitigate OWASP top 10 security risks. Now I have to implement the same in AngularJS.

Is there any library avilable similar to HDIV for AngularJS?

1

There are 1 answers

1
rbelasko On BEST ANSWER

For client-mvc scenarios such as AngularJS Spring-Hateoas approach fits well with HDIV. Actually, HDIV has a module for that integration: https://github.com/hdiv/hdiv/tree/hdiv-hateoas

It’s not totally finished yet but the integration of URL resources works (see ResourceRequestDataValueProcessor) but it’s not finished the support for forms. When we started this module this data format for forms was not finished or defined, and that’s why we did not continue this work.

We think it could be possible a very integrated solution with HDIV following Hypermedia and HATEOAS approach for client-mvc apps or also for native mobile apps. In other words, within REST Hypermedia approach all URLs or forms, excepting the first URL, are created in the server side, in a similar way of traditional server side MVC web technologies.

Please take a look to this module (hdiv-hateoas) and we can support you if you have any doubts.

Roberto Velasco (HDIV team)