Initial Milestones :
- Integrating an OTP System that uses HMAC-SHA1 algorithm with timeout based refresh system along with support from Backend Servers.
- Demonstration of Why a 4 Digit OTP System will fail within the 10 Minute timeframe, since 4 Digit Based Numeric OTP's can be bruteforced and broken into.
- Add a URL Fuzzer using a basic dictionary to bruteforce and find all possible hidden directories/files on a given URL.
- Add PWNED Database Check for Password Strength Checker, hacked/leaked passwords should be alloted a low strength, even if they are strong.
Updates :
- Added Basic XOR Encryption Technique via Random Private Key Generation.
- Added a counter Decryption Technique.
- Used Neon - Glow BootStrap for formatting and styling the website.
- Added HMAC SHA256 Base64 Hashing Algorithm.
- Implemented RSA Algorithm from Scratch with increased Randomisation and PreComputed Prime Numbers/Euclid's Algorithm for GCD/Modular Exponentiation for instant response.
- Added MD5 Hash and AES Encryption and Decryption via CryptoJS.
- Added URI Decode Component of JS to decode URI's particularly encountered while intercepting requests.
- Added a Password Strength Checker that allots a score based on unique characters used and the count of Non-Words + Numbers, and allots a Strength Level based on this custom cumulative score.
- Added PWNAGE Check to Password Strength Checker via HaveIBeenPWNED API.