()
| 827 | |
| 828 | |
| 829 | def androidhash(): |
| 830 | key = raw_input("Enter the android hash : ") |
| 831 | salt = raw_input("Enter the android salt : ") |
| 832 | os.system("git clone https://github.com/PentesterES/AndroidPINCrack.git") |
| 833 | os.system( |
| 834 | "cd AndroidPINCrack && python AndroidPINCrack.py -H %s -s %s" % (key, salt)) |
| 835 | |
| 836 | |
| 837 | def passwd(): |