Advertisement
puggan

cf-email-decode.js

Oct 2nd, 2019
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. !(() => {
  2.     "use strict";
  3.  
  4.     // Error handler
  5.     function handleError(errorMessage) {
  6.         try {
  7.             if ("undefined" == typeof console) {
  8.                 return;
  9.             }
  10.             "error" in console ? console.error(errorMessage) : console.log(errorMessage);
  11.         } catch (e) {
  12.         }
  13.     }
  14.  
  15.     // URL Decode?
  16.     function urlDecode(url) {
  17.         divElement.innerHTML = '<a href="' + url.replace(/"/g, "&quot;") + '"></a>';
  18.         return divElement.childNodes[0].getAttribute("href") || "";
  19.     }
  20.  
  21.     // convert a hex par at position t in the string e
  22.     function decodeHexPair(hexString, offset) {
  23.         const pairString = hexString.substr(offset, 2);
  24.         return parseInt(pairString, 16);
  25.     }
  26.  
  27.     function unmaskUrl(hexString, offset) {
  28.         let url = "";
  29.         const xorMask = decodeHexPair(hexString, offset);
  30.  
  31.         for (let index = offset + 2; index < hexString.length; index += 2) {
  32.             let ascciNumber = decodeHexPair(hexString, index) ^ xorMask;
  33.             url += String.fromCharCode(ascciNumber);
  34.         }
  35.  
  36.         try {
  37.             url = decodeURIComponent(escape(url));
  38.         } catch (errorMessage) {
  39.             handleError(errorMessage);
  40.         }
  41.         return urlDecode(url);
  42.     }
  43.  
  44.     function fixLink(baseElement) {
  45.         const linkList = baseElement.querySelectorAll("a");
  46.         for (let index = 0; index < linkList.length; index++) {
  47.             try {
  48.                 const link = linkList[index];
  49.                 const offset = link.href.indexOf(emailProtectionPrefix);
  50.                 if (offset > -1) {
  51.                     link.href = "mailto:" + unmaskUrl(link.href, offset + emailProtectionPrefix.length);
  52.                 }
  53.             } catch (errorMessage) {
  54.                 handleError(errorMessage)
  55.             }
  56.         }
  57.     }
  58.  
  59.     function restorePlainTextEmails(baseElement) {
  60.         const protectedElementsList = baseElement.querySelectorAll(emailProtectionClass);
  61.         for (let index = 0; index < protectedElementsList.length; index++) {
  62.             try {
  63.                 const protectedElement = protectedElementsList[index];
  64.                 const protectedElementParent = protectedElement.parentNode;
  65.                 const encryptedEmail = protectedElement.getAttribute(emailProtectionAttribute);
  66.                 if (encryptedEmail) {
  67.                     var emailAdress = unmaskUrl(encryptedEmail, 0);
  68.                     var emailAdressElement = document.createTextNode(emailAdress);
  69.                     protectedElementParent.replaceChild(emailAdressElement, protectedElement);
  70.                 }
  71.             } catch (h) {
  72.                 handleError(h)
  73.             }
  74.         }
  75.     }
  76.  
  77.     function a(baseElement) {
  78.         const templateList = baseElement.querySelectorAll("template");
  79.         for (let index = 0; index < templateList.length; index++) {
  80.             try {
  81.                 init(templateList[index].content)
  82.             } catch (errorMessage) {
  83.                 handleError(errorMessage)
  84.             }
  85.         }
  86.     }
  87.  
  88.     function init(baseElement) {
  89.         try {
  90.             fixLink(baseElement);
  91.             restorePlainTextEmails(baseElement);
  92.             a(baseElement);
  93.         } catch (errorMessage) {
  94.             handleError(errorMessage)
  95.         }
  96.     }
  97.  
  98.     const emailProtectionPrefix = "/cdn-cgi/l/email-protection#";
  99.     const emailProtectionClass = ".__cf_email__";
  100.     const emailProtectionAttribute = "data-cfemail";
  101.     const divElement = document.createElement("div");
  102.  
  103.     init(document);
  104.     (() => {
  105.         const currentScriptElement = document.currentScript || document.scripts[document.scripts.length - 1];
  106.         currentScriptElement.parentNode.removeChild(currentScriptElement)
  107.     })();
  108. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement