OP 29 December, 2020 - 05:44 AM
(This post was last modified: 29 December, 2020 - 06:09 AM by s3ns.)
I'm total noob in programming, srsly cant even compile a file , but im in need of CloudFlare mail protection decoding
i wonder if any of you guys is willing to help me out making this checker.
Below are a few links and codes i found online while i was searching if there is any way to decode this.
One option is also for openubllet.
I'm willing to pay something little .
First link is in 6 languages:
https://usamaejaz.com/cloudflare-email-decoding/
https://www.saltycrane.com/blog/2015/07/...d-content/
https://forum.openbullet.dev/topic/29/pa...d-emails/8
https://blog.safebuff.com/2016/06/01/Clo...n-Decoder/
https://ghostbin.co/paste/szzdp
Hope that some nice guy takes his time to help me out and then share this to comunity.
i wonder if any of you guys is willing to help me out making this checker.
Below are a few links and codes i found online while i was searching if there is any way to decode this.
One option is also for openubllet.
I'm willing to pay something little .
First link is in 6 languages:
https://usamaejaz.com/cloudflare-email-decoding/
https://www.saltycrane.com/blog/2015/07/...d-content/
https://forum.openbullet.dev/topic/29/pa...d-emails/8
https://blog.safebuff.com/2016/06/01/Clo...n-Decoder/
https://ghostbin.co/paste/szzdp
Hope that some nice guy takes his time to help me out and then share this to comunity.
soi managed to do it in python somehow with this code:
Code:
import re
def deCFEmail():
fp = 'e3c29dc289828e8690bcd1dbd6a38b8c978e828a8fcd808c8e'
r = int(fp[:2],16)
email = ''.join([chr(int(fp[i:i+2], 16) ^ r) for i in range(2, len(fp), 2)])
print (email)
if __name__ == "__main__":
deCFEmail()
but is it possible to decode multiple at the same time ? *