I am new in typescript, and I have used on global var in polyfill.js
(window as any).global = window;
So with security or XSS purpose is it vulnerable to use. Or should I remove to find another route? Thanks, techies.
I am new in typescript, and I have used on global var in polyfill.js
(window as any).global = window;
So with security or XSS purpose is it vulnerable to use. Or should I remove to find another route? Thanks, techies.
Given that global
is set to the same value as window
and window
is still available if you remove global
- global
provides no additional means for XSS / security issues than is already available from window
itself.
So if your question is whether (window as any).global = window;
creates some new opportunity for a cross-site scripting attack; it doesn't.