Skip to content

Instantly share code, notes, and snippets.

@dvygolov
Created April 30, 2024 09:14
Show Gist options
  • Save dvygolov/a097035500bbe821f4b612adebe26137 to your computer and use it in GitHub Desktop.
Save dvygolov/a097035500bbe821f4b612adebe26137 to your computer and use it in GitHub Desktop.
White page with "press and hold" action to filter bots
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Access to this page has been denied.</title> <link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet"> <style> html, body { margin: 0; padding: 0; font-family: 'Open Sans', sans-serif; color: #000; } a { color: #c5c5c5; text-decoration: none; } .container { align-items: center; display: flex; flex: 1; justify-content: space-between; flex-direction: column; height: 100%; } .container > div { width: 100%; display: flex; justify-content: center; } .container > div > div { display: flex; width: 80%; } .customer-logo-wrapper { padding-top: 2rem; flex-grow: 0; background-color: #fff; visibility: visible; } .customer-logo { border-bottom: 1px solid #000; } .customer-logo > img { padding-bottom: 1rem; max-height: 50px; max-width: 100%; } .page-title-wrapper { flex-grow: 2; } .page-title { flex-direction: column-reverse; } .content-wrapper { flex-grow: 5; } .content { flex-direction: column; } .page-footer-wrapper { align-items: center; flex-grow: 0.2; background-color: #000; color: #c5c5c5; font-size: 70%; } @media (min-width: 768px) { html, body { height: 100%; } } </style> </head> <body> <section class="container"> <div class="customer-logo-wrapper"> <div class="customer-logo"> <img src="//res.cloudinary.com/ssenseweb/image/upload/v1471963917/web/ssense_logo_v2.svg" alt="Logo" /> </div> </div> <div class="page-title-wrapper"> <div class="page-title"> <h1>Please verify you are a human</h1> </div> </div> <div class="content-wrapper"> <div class="content"> <div id="px-captcha"> </div> <p> Access to this page has been denied because we believe you are using automation tools to browse the website. </p> <p> This may happen as a result of the following: </p> <ul> <li> Javascript is disabled or blocked by an extension (ad blockers for example) </li> <li> Your browser does not support cookies </li> </ul> <p> Please make sure that Javascript and cookies are enabled on your browser and that you are not blocking them from loading. </p> <p> Reference ID: #baff9429-c4ac-11ec-aebb-6a766354456e </p> </div> </div> <div class="page-footer-wrapper"> <div class="page-footer"> <p> Powered by <a href="https://www.perimeterx.com/whywasiblocked">PerimeterX</a> , Inc. </p> </div> </div> </section> <script> window._pxAppId = 'PX58Asv359'; window._pxJsClientSrc = '/58Asv359/init.js'; window._pxFirstPartyEnabled = true; window._pxVid = ''; window._pxUuid = 'baff9429-c4ac-11ec-aebb-6a766354456e'; window._pxHostUrl = '/58Asv359/xhr'; </script> <script> var s = document.createElement('script'); s.src = '/58Asv359/captcha/captcha.js?a=c&u=baff9429-c4ac-11ec-aebb-6a766354456e&v=&m=0'; var p = document.getElementsByTagName('head')[0]; p.insertBefore(s, null); if (true ){s.onerror = function () {s = document.createElement('script'); var suffixIndex = '/58Asv359/captcha/captcha.js?a=c&u=baff9429-c4ac-11ec-aebb-6a766354456e&v=&m=0'.indexOf('/captcha.js'); var temperedBlockScript = '/58Asv359/captcha/captcha.js?a=c&u=baff9429-c4ac-11ec-aebb-6a766354456e&v=&m=0'.substring(suffixIndex); s.src = '//captcha.px-cdn.net/PX58Asv359' + temperedBlockScript; p.parentNode.insertBefore(s, p);};}</script> </body> </html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment