We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you have a possible attack vector please make a comment or an issue and include the code like so
```js script // execute code with an attack vector console.log('window.secret', window.secret); ```
The text was updated successfully, but these errors were encountered:
PREVENTED: Trying to fetch an external resource
fetch('https://www.google.com/').then(response => response.text().then(text => console.log(text)));
Sorry, something went wrong.
PREVENTED: Trying to fetch from api.github.com (e.g. do github api calls on behalf of the user)
fetch('https://api.github.com/').then(response => response.text().then(text => console.log(text)));
PREVENTED: get data from parent window before you start you should set window.secret = 'pssst';
window.secret = 'pssst';
console.log('window.secret', window.secret); console.log('parent.secret', parent.secret);
No branches or pull requests
If you have a possible attack vector please make a comment or an issue and include the code like so
The text was updated successfully, but these errors were encountered: