Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
What are the security principles in angular?
Home
Angular
What are the security principles in angular?
asked
Sep 16, 2023
in
Angular
by
GeorgeBell
What are the security principles in angular?
angularjs-interview-questions-answres
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 16, 2023
by
GeorgeBell
Below are the list of security principles in angular,
You should avoid direct use of the DOM APIs.
You should enable Content Security Policy (CSP) and configure your web server to return appropriate CSP HTTP headers.
You should Use the offline template compiler.
You should Use Server Side XSS protection.
You should Use DOM Sanitizer.
You should Preventing CSRF or XSRF attacks.
...