Closed mulbc closed 5 years ago
When secrets in Vault contain HTML code - this is executed when displaying that information in the popup. This could be a security issue
That is easily fixed if you use .textContent instead of innerHTML. The former will not execute code but place it as text. Otherwise you would have to escape or sanatize the input before placing it.
innerHTML
When secrets in Vault contain HTML code - this is executed when displaying that information in the popup. This could be a security issue