You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently custom translators run in sandboxed iframe, so they have no access to extension API.
Hovewer, custom translator may sent requests with included credentials, so it is potentially possible that some code will send request to site of bank, to send money from one account to another.
If you see isHacked true, then it mean a problem still reproduces
This code sent request to GitHub endpoint that is over an authentication. If this endpoint does not return an error, it means the code may sent requests as legit user.
The solution
To prevent this problem, we should omit credentials in our fetch proxy.
The text was updated successfully, but these errors were encountered:
The problem
Currently custom translators run in sandboxed iframe, so they have no access to extension API.
Hovewer, custom translator may sent requests with included credentials, so it is potentially possible that some code will send request to site of bank, to send money from one account to another.
POC code:
isHacked
true, then it mean a problem still reproducesThis code sent request to GitHub endpoint that is over an authentication. If this endpoint does not return an error, it means the code may sent requests as legit user.
The solution
To prevent this problem, we should omit credentials in our fetch proxy.
The text was updated successfully, but these errors were encountered: