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
Cause anyone can easily steal your key by doing this
constimportKey=crypto.subtle.importKey.bind(crypto.subtle);crypto.subtle.importKey=(...args)=>{console.log('your key is stolen:',args);returnimportKey(...args);};crypto.subtle.importKey('raw',newUint8Array([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]),'AES-CBC',false,['encrypt','decrypt']);
The text was updated successfully, but these errors were encountered:
Cause anyone can easily steal your key by doing this
The text was updated successfully, but these errors were encountered: