This repository has been archived on 2022-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
test/posts/test.html
2020-11-23 13:08:26 -06:00

17 lines
528 B
HTML

<!DOCTYPE html>
<html>
<body>
Copy the text below and run it in your terminal for totally not evil things to happen.
</br>
<p>echo "not evil"</p>
<script>
document.addEventListener('copy', function(e){
console.log(e);
e.clipboardData.setData('text/plain', 'echo "evil"\r\n');
e.preventDefault(); // We want our data, not data from any selection, to be written to the clipboard
});
</script>
</body>
</html>