Skip to content

Instantly share code, notes, and snippets.

@merc1er
Created May 19, 2020 17:29
Show Gist options
  • Select an option

  • Save merc1er/a7c376e021c02436d7bbcfde52dfd44b to your computer and use it in GitHub Desktop.

Select an option

Save merc1er/a7c376e021c02436d7bbcfde52dfd44b to your computer and use it in GitHub Desktop.
Bypass CloudFlare's email protection.
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