MCPcopy
hub / github.com/s0md3v/Hash-Buster / alpha

Function alpha

hash.py:39–45  ·  view source on GitHub ↗
(hashvalue, hashtype)

Source from the content-addressed store, hash-verified

37 directory = directory[:-1]
38
39def alpha(hashvalue, hashtype):
40 response = requests.get('https://lea.kz/api/hash/' + hashvalue).text
41 match = re.search(r': "(.*?)"', response)
42 if match:
43 return match.group(1)
44 else:
45 return False
46
47def beta(hashvalue, hashtype):
48 response = requests.get('http://hashtoolkit.com/reverse-hash/?hash=', hashvalue).text

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected