SBSD
SBSD (Secondary Bot Score Detection) is an additional challenge layer. When triggered, you receive an HTML page instead of expected content.
Identifying SBSD
You've hit an SBSD challenge when you receive:
<html>
<head>
<script src="/.well-known/sbsd?v=f96b0144-83cf-fd90-7200-553b2f046010&t=259288945"></script>
<script>
(function() {
var proxied = window.XMLHttpRequest.prototype.send;
window.XMLHttpRequest.prototype.send = function() {
var pointer = this
var intervalId = window.setInterval(function(){
if (pointer.readyState != 4){
return;
}
location.reload(true)
clearInterval(intervalId);
}, 1);
return proxied.apply(this, [].slice.call(arguments));
};
})();
</script>
</head>
<body></body>
</html>Solution Flow
2
Troubleshooting
Last updated