minor improvements

This commit is contained in:
2026-04-10 08:48:13 +02:00
parent 91dcd50350
commit 6de49f3c6c
3 changed files with 74 additions and 30 deletions

View File

@@ -93,7 +93,7 @@ if __name__ == "__main__":
fp.write(b"%s\n" % hash.encode("UTF-8"))
fp.flush()
proc = subprocess.Popen(["hashcat", "-m", str(selected_type), "-a", "0", fp.name, wordlist])
proc = subprocess.Popen(["hashcat", "-m", str(selected_type), "-a", "0", fp.name, wordlist] + sys.argv[2:])
proc.wait()
fp.close()
else: