Skip to content

Instantly share code, notes, and snippets.

@sleshep
sleshep / cvt.py
Created May 5, 2023 07:54
Hashcat mode 2500 to 22000 converter Python Script. hccapx to mode 22000
import sys
import os
import struct
def main():
if len(sys.argv) != 2:
print("Usage: python convert_hccapx_to_22000.py <input_hccapx_file>")
sys.exit(1)
import this