Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I be concerned by "SecurityError: Permission denied to access property on cross-origin object" logs

Tags:

Following errors were logged on my website, should I be concerned or can I just ignore them?

SecurityError: Permission denied to access property "dispatchEvent" on cross-origin object - url: moz-extension://f985b107-bcb9-45d4-95c4-b1bb39443725/js/inject.js - line: 65 - column: 0 - error: SecurityError: Permission denied to access property "dispatchEvent" on cross-origin object (browser: Firefox 55) 

Thanks!

like image 353
user2708647 Avatar asked Mar 08 '19 18:03

user2708647


1 Answers

You should not be concerned, you can ignore them.

It comes from extension of a firefox browser: url: moz-extension://f985b107-bcb9-45d4-95c4-b1bb39443725/js/inject.js who's trying to attach event but CrossOrigin query is not allowed.

Good documentation explaining CORS (Cross Origin Resource Sharing) : https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS

like image 146
Antoine Feuillet Avatar answered Oct 04 '22 13:10

Antoine Feuillet