This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function detectTamperMonkey(callback) { | |
| /** | |
| * Detect tampermonkey via stack dumping | |
| */ | |
| const createElem = document.createElement; | |
| document.createElement = function() { | |
| try { | |
| throw new Error(); | |
| } catch (e) { | |
| const stackTrace = e.stack; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def decode_cf_email(encoded: str) -> str: | |
| """Decode Cloudflare obfuscate email address. | |
| """ | |
| def r(e: str, t: int): | |
| return int(e[t : t + 2], 16) | |
| def decode(n: str, offset: int)-> str: | |
| result = "" | |
| key = r(n, offset) | |
| for i in range(offset + 2, len(n), 2): |