Skip to content
Permalink
Browse files
Update TestHarness.py
Fix Missing Comma in the Test Harness
  • Loading branch information
aa9863 committed Oct 19, 2020
1 parent 9294260 commit 01e2a176c797e3eb76462a8f2f99aa3b1cbd284c
Showing 1 changed file with 2 additions and 2 deletions.
@@ -18,7 +18,7 @@ SIMPLE_SALT = ["283140d63e0937fb652ff7066bbf5c2f",
"25e2262b5d8c95f7ece0bc4f30f5213d"]

#MD5 Salted with Random Salts (in <salt>$<hash> format)
MD5_SALT = ["rkKxLR$c35bf00b953186ec3be4916dd45deabc"
MD5_SALT = ["rkKxLR$c35bf00b953186ec3be4916dd45deabc",
"MyEtoS$b0a56a1df2353c7629509a12a17f5a2d",
"kshhHk$9664b09bedf4ed95f1b7b024087cec12",
"FMVbrf$6751d1e9a8ee57b383836596869cd94a",
@@ -84,4 +84,4 @@ if __name__ == "__main__":
#simpleCrack(wordlist, target)

endTime = time.time()
print ("Total of {0} Seconds".format(endTime - startTime))
print ("Total of {0} Seconds".format(endTime - startTime))

0 comments on commit 01e2a17

Please sign in to comment.