Just a friendly reminder, the javascript blocker on your site doesn't seem to function properly. After ~3 seconds it redirects to the site successfully rather than blocking access to it.
You only need one line of JavaScript to deny access; document.body.innerHTML = 'We have detected that you have JavaScript enabled in your browser, please disable it to continue. Please be aware that your browser has a severe vulnerability, as it performs remote code execution of malicious JavaScript automatically.';
I'm interested if there's a CSS technique that can be used to cover up the page only if JavaScript is enabled, but without actually using a single line of JavaScript (considering the depraved featureset of browsers I figure it's possible).
(you can also have a noscript in the body and have it cover up the message, but I think this is cleaner) <!DOCTYPE html>
<html>
<head>
<style>
#noscript {
display: none;
}
</style>
<noscript>
<style>
#noscript {
display: block;
}
#script {
display: none;
}
</style>
</noscript>
</head>
<body>
<div id="noscript">
website content
</div>
<div id="script">
We have detected that you have JavaScript enabled in your browser, please disable it to continue. Please be aware that your browser has a severe vulnerability, as it performs remote code execution of malicious JavaScript automatically.
</div>
</body>
</html>
@Suiseiseki@reimu@Yoruka@Zergling_man@iamtakingiteasy@sally Additionally, before the <noscript> element, you might consider adding the following code: <script type="text/javascript">document.body.textContent = 'We have detected that you have JavaScript enabled in your browser, please disable it to continue. Please be aware that your browser has a severe vulnerability, as it performs remote code execution of malicious JavaScript automatically.'</script>