In Windows with Python
- Download and install python
- open PowerShell
- run python -c "import sys,hashlib; print(hashlib.new('md4',sys.argv[1].encode('utf-16le')).hexdigest())" "Password123"
- Replace Password123 with the password you want to hash.
This website is going to be dedicated to the basic and advanced steps taken in network forensics. Currently I am working through picoCTF and I will share the steps taken to solve the challenges.
Bruce Schneier said:
"Security is a process, not a product, and that complexity is the enemy of security."
Studying Vulnerabilities: MD4 is considered completely insecure and is vulnerable to collision attacks (finding two different inputs that produce the same hash) and pre-image attacks. Researchers use it to study how these attacks work in practice, demonstrate the flaws, and understand the evolution of cryptographic principles.