0 votes
in Angular by
What is Angular security model for preventing XSS attacks?

1 Answer

0 votes
by

Angular treats all values as untrusted by default. i.e, Angular sanitizes and escapes untrusted values When a value is inserted into the DOM from a template, via property, attribute, style, class binding, or interpolation.

...