Dears,
I 'm new to AngularJS world and I had a lot of security concerns regarding SPA in general and my question is :
Is ASPNetBoilerplate implement any security standards or using any security libraries that let me confident that using this great template (ASPNetBoilerplate) my SPA application will be secure and can't be Hacked ?
Otherwise,
I hope to give me your recommendation on how to implement a secure SPA web site using the ASPNetBoilerplate.
Many Thanks, Mahran
2 Answer(s)
-
0
Security is wide area and you may have different levels of security. For me, 'data security' is important. No problem to see HTML templates, CSS files or js files. So, I just implement authorization when client requests a data. ABP hast [AbpAuthorize] attribute for that. See docs: <a class="postlink" href="http://www.aspnetboilerplate.com/Pages/Documents/Authorization">http://www.aspnetboilerplate.com/Pages/ ... horization</a>
-
0
Many Thanks. I will check.