admin管理员组文章数量:1342902
Do I need to explicitly sanitize all inputs, or does Angular already do it for me?
I have a login form - when submitted it sends it's data to the server. Does the data require explicit sanitization, or Angular automatically sanitize all input fields?
Do I need to explicitly sanitize all inputs, or does Angular already do it for me?
I have a login form - when submitted it sends it's data to the server. Does the data require explicit sanitization, or Angular automatically sanitize all input fields?
Share edited Apr 11, 2019 at 20:31 JeremyW 5,2726 gold badges31 silver badges31 bronze badges asked Apr 10, 2019 at 14:08 mrd3athmrd3ath 731 gold badge1 silver badge3 bronze badges 4-
What do you mean by
the data entered gets evaluated for user
? Is it redisplayed somewhere in the application ? Or do you ask if it will be sanitized before being sent to your server ? – Arnaud Denoyelle Commented Apr 10, 2019 at 14:14 - 2 read this: angular.io/guide/security – etarhan Commented Apr 10, 2019 at 14:16
- 1 Also, this might answer your question – Arnaud Denoyelle Commented Apr 10, 2019 at 14:16
- If it will be sanitized before being sent to the server – mrd3ath Commented Apr 10, 2019 at 15:38
2 Answers
Reset to default 9I appreciate your questions, it may be useful to others. Under no circumstances should the backed ever trust the front end, no framework, no custom library, nothing. If someone can exploit, inject, or otherwise harass your backed, they will, period. They will do so bypassing any front end framework or library and make direct requests to the endpoint, masquerading as anything necessary to do so.
And as @etarhan said, read this: https://angular.io/guide/security
No. If it's on the frontend then the user can change it in their browser, edit requests inflight and so on. Your sanitisation should be handled in the backend where the user cannot manipulate it.
I would also strongly remend finding a framework for your backend language rather than reinventing the wheel.
本文标签: javascriptDo I have to explicitly sanitize input fields in Angular 6Stack Overflow
版权声明:本文标题:javascript - Do I have to explicitly sanitize input fields in Angular 6? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743683003a2521436.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论