(hashvalue, hashtype)
| 37 | directory = directory[:-1] |
| 38 | |
| 39 | def 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 | |
| 47 | def beta(hashvalue, hashtype): |
| 48 | response = requests.get('http://hashtoolkit.com/reverse-hash/?hash=', hashvalue).text |
nothing calls this directly
no outgoing calls
no test coverage detected