Created
May 19, 2020 17:29
-
-
Save merc1er/a7c376e021c02436d7bbcfde52dfd44b to your computer and use it in GitHub Desktop.
Bypass CloudFlare's email protection.
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
| from requests_html import HTMLSession | |
| # https://requests-html.kennethreitz.org | |
| session = HTMLSession() | |
| # an example of cloudflare protected page | |
| r = session.get('https://www.bitcoincash.org/privacy-policy.html') | |
| r.html.render() | |
| print(r.html.text) | |
| # look for '@' and you will see the email address in plain text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment