Skip to main content

Posts

Showing posts with the label How Google Handles Security Issues in Angular 4 Apps?

How Google Handles Security in Angular 4, 5, 6 and 7 Applications?

The cross-site scripting attack doesn’t cover application-level security and for the applications security will need to implements authentication and authorization. As you know - 1.      Authentication - Who is this user? 2.      Authorization - What can this user do? Best Practices to Application Level Security - 1.      Keep updated releases of Angular library. Actually, the security team regularly update the fixes of security and defects in latest versions. 2.      Don't add any custom hack on Angular library. It will create the problem to update the latest library. 3.      You Must Prevent Trusting safe values 4.      You Must Follow the HTTP level vulnerabilities 5.      You Must Prevent Cross-site request forgery ( CSR Fattacks ) 6.      You Must Prevent Cross-site script inclusion ( XSSI ) 7...