Created
September 12, 2018 10:46
-
-
Save seth1002/5161ceb559cf91b530ba6f6f819d5c4f to your computer and use it in GitHub Desktop.
smokeloader decrypt c2 list
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
''' | |
md5: | |
bba9cae25f03dfa20d57ac3bafa4a0ae | |
05c03457934160ecf2acc4b89da99cad | |
c2: | |
http://hellopittysloiebe.com/ | |
http://keinemachtdendrugis.ru/ | |
http://hallokittyverseinsheimse.ru/ | |
http://killermansopitu.com/ | |
http://klautuschkertiker.ru/ | |
http://bauersuchtmannin.su/ | |
http://hammergeildasisghj.com/ | |
http://pimmelskinderkis.ru/ | |
http://kollegahskilosde.com/ | |
''' | |
def config_bin_v2(cfgData): | |
_key = ord(cfgData[0]) | |
_len = ord(cfgData[4])>>1 | |
dec_data = [] | |
enc_data = cfgData[5:] | |
c2 = '' | |
step = 0 | |
for p,n in zip(enc_data, enc_data[1:]): | |
dec_data.append((ord(p)^_key)-(ord(n)^_key)) | |
if step > (_len-1)*2: | |
break | |
step +=1 | |
for c in dec_data[::2]: | |
c2 += chr(c) | |
return c2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment