1
0
mirror of https://github.com/mermaid-js/mermaid.git synced 2025-03-11 07:53:10 +08:00

7 lines
234 B
JavaScript
Raw Normal View History

2021-06-03 20:47:24 +02:00
const div = parent.document.createElement('div');
div.id = 'the-malware';
div.className = 'malware';
div.innerHTML = 'XSS Succeeded';
parent.document.getElementsByTagName('body')[0].appendChild(div);
2022-06-27 12:29:50 +09:00
throw new Error('XSS Succeeded');