Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



   2434

CF Decoding

by s3ns - 29 December, 2020 - 05:44 AM
This post is by a banned member (s3ns) - Unhide
s3ns  
Infinity
612
Posts
343
Threads
4 Years of service
#1
(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.  

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 ? *
[Image: ezgif-com-gif-maker-2.gif]
This post is by a banned member (PRAF) - Unhide
PRAF  
Infinity
227
Posts
117
Threads
5 Years of service
#2
(This post was last modified: 29 December, 2020 - 07:06 AM by PRAF.)
Code:
import re
def deCFEmail(fp):  
    r = int(fp[:2],16)
    email = ''.join([chr(int(fp[i:i+2], 16) ^ r) for i in range(2, len(fp), 2)])
    return email
if name == "__main__":
    fp = 'e3c29dc289828e8690bcd1dbd6a38b8c978e828a8fcd808c8e'
    deCFEmail(fp)
[Image: standard_15.gif]
This post is by a banned member (s3ns) - Unhide
s3ns  
Infinity
612
Posts
343
Threads
4 Years of service
#3
(29 December, 2020 - 07:05 AM)PRAF Wrote: Show More
Code:
import re
def deCFEmail(fp):
r = int(fp[:2],16)
email = ''.join([chr(int(fp[i:i+2], 16) ^ r) for i in range(2, len(fp), 2)])
return email
if name == "__main__":
fp = 'e3c29dc289828e8690bcd1dbd6a38b8c978e828a8fcd808c8e'
deCFEmail(fp)

[Image: C3VqEdx.png]

dosent seem to work
[Image: ezgif-com-gif-maker-2.gif]
This post is by a banned member (PRAF) - Unhide
PRAF  
Infinity
227
Posts
117
Threads
5 Years of service
#4
(29 December, 2020 - 07:53 AM)s3ns Wrote: Show More
(29 December, 2020 - 07:05 AM)PRAF Wrote: Show More
Code:
import re
def deCFEmail(fp):
r = int(fp[:2],16)
email = ''.join([chr(int(fp[i:i+2], 16) ^ r) for i in range(2, len(fp), 2)])
return email
if name == "__main__":
fp = 'e3c29dc289828e8690bcd1dbd6a38b8c978e828a8fcd808c8e'
deCFEmail(fp)

[Image: C3VqEdx.png]

dosent seem to work


Replace 6th Line with :

if __name__ == "__main__":
[Image: standard_15.gif]
This post is by a banned member (s3ns) - Unhide
s3ns  
Infinity
612
Posts
343
Threads
4 Years of service
#5
(29 December, 2020 - 09:41 AM)PRAF Wrote: Show More
(29 December, 2020 - 07:53 AM)s3ns Wrote: Show More
(29 December, 2020 - 07:05 AM)PRAF Wrote: Show More
Code:
import re
def deCFEmail(fp):
r = int(fp[:2],16)
email = ''.join([chr(int(fp[i:i+2], 16) ^ r) for i in range(2, len(fp), 2)])
return email
if name == "__main__":
fp = 'e3c29dc289828e8690bcd1dbd6a38b8c978e828a8fcd808c8e'
deCFEmail(fp)

[Image: C3VqEdx.png]

dosent seem to work


Replace 6th Line with :

if __name__ == "__main__":

[Image: qFkHR79.png]
now there is no error but no output aswell.
[Image: ezgif-com-gif-maker-2.gif]
This post is by a banned member (PRAF) - Unhide
PRAF  
Infinity
227
Posts
117
Threads
5 Years of service
#6
(This post was last modified: 30 December, 2020 - 11:02 AM by PRAF.)
(29 December, 2020 - 02:12 PM)s3ns Wrote: Show More
(29 December, 2020 - 09:41 AM)PRAF Wrote: Show More
(29 December, 2020 - 07:53 AM)s3ns Wrote: Show More
[Image: C3VqEdx.png]

dosent seem to work


Replace 6th Line with :

if __name__ == "__main__":

[Image: qFkHR79.png]
now there is no error but no output aswell.

Dead
[Image: standard_15.gif]
This post is by a banned member (semerang) - Unhide
semerang  
Registered
10
Posts
0
Threads
4 Years of service
#7
rthanksss
This post is by a banned member (TheLastGoodbye) - Unhide

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)