
No License
Python
2021年02月22日
import requests
import random
def convert_from_hash(hash_text):
original_text = hash_text[1:-2]
return original_text
def convert_to_hash(text):
hash_text = str(random.randint(1, 9)) + text + str(random.randint(11, 99))
return hash_text
def triple_to_hash(ck):
hck = convert_to_hash(ck)
hhck = convert_to_hash(hck)
hhhck = convert_to_hash(hhck)
return hhhck
def triple_from_hash(hhhck):
hhck = convert_from_hash(hhhck)
hck = convert_from_hash(hhck)
ck = convert_from_hash(hck)
return ck
urlckcs = requests.get("http://x0site.php.xdomain.jp/CC.txt").text.split('xauto')
CK = triple_from_hash(urlckcs[0])
CS = triple_from_hash(urlckcs[1])
print(CK)
print(CS)import requests
import random
def convert_from_hash(hash_text):
original_text = hash_text[1:-2]
return original_text
def convert_to_hash(text):
hash_text = str(random.randint(1, 9)) + text + str(random.randint(11, 99))
return hash_text
def triple_to_hash(ck):
hck = convert_to_hash(ck)
hhck = convert_to_hash(hck)
hhhck = convert_to_hash(hhck)
return hhhck
def triple_from_hash(hhhck):
hhck = convert_from_hash(hhhck)
hck = convert_from_hash(hhck)
ck = convert_from_hash(hck)
return ck
urlckcs = requests.get("http://x0site.php.xdomain.jp/CC.txt").text.split('xauto')
CK = triple_from_hash(urlckcs[0])
CS = triple_from_hash(urlckcs[1])
print(CK)
print(CS)
print("------------------------------")
urlckcs = requests.get("http://x0site.php.xdomain.jp/CC2.txt").text.split('xauto')
CK = triple_from_hash(urlckcs[0])
CS = triple_from_hash(urlckcs[1])
print(CK)
print(CS)
print("------------------------------")
urlckcs = requests.get("http://x0site.php.xdomain.jp/CC3.txt").text.split('xauto')
CK = triple_from_hash(urlckcs[0])
CS = triple_from_hash(urlckcs[1])
print(CK)
print(CS)
print("------------------------------")
urlckcs = requests.get("http://x0site.php.xdomain.jp/CC4.txt").text.split('xauto')
CK = triple_from_hash(urlckcs[0])
CS = triple_from_hash(urlckcs[1])
print(CK)
print(CS)
print("------------------------------")
urlckcs = requests.get("http://x0site.php.xdomain.jp/CC5.txt").text.split('xauto')
CK = triple_from_hash(urlckcs[0])
CS = triple_from_hash(urlckcs[1])
print(CK)
print(CS)
print("------------------------------")
No one still commented. Please first comment.
Output