My Projects
-
FileEncryptor
FileEncryptor is a Python-based tool that lets you securely encrypt and decrypt files on your local machine.
It uses strong symmetric encryption (Fernet/AES) to protect sensitive data with a single password.
The goal was to create something lightweight, practical, and easy to use — whether for privacy, backups, or local security tasks.Tech Used: Python, cryptography (Fernet), argparse
Focus Areas: Local file security, encryption tools, privacy utilities -
BugBox
BugBox is a vulnerable local web application built for practicing and learning offensive security techniques.
It includes real implementations of common OWASP Top 10 vulnerabilities like XSS, SQL Injection, insecure file upload, and broken access control.
Built with Python and Flask, BugBox is designed for beginner-to-intermediate pentesters who want hands-on experience in a safe, isolated environment.Tech Used: Python, Flask, HTML/CSS, JavaScript
Focus Areas: Offensive security, web application testing, vulnerability exploitation -
CrackIt
CrackIt is a Python-based hash-cracking tool that offers both dictionary and brute-force attack options.
It allows users to input a hash (MD5, SHA1, SHA256), select an attack mode, and optionally provide or generate a wordlist. The tool supports smart wordlist generation using names, years, symbols, and custom patterns, making it flexible for both CTFs and basic password auditing.Tech Used: Python, hashlib, argparse, sys, os
Focus Areas: Hash cracking, dictionary attacks, brute-force logic, custom wordlist generation -
BitHide
BitHide is a steganography tool built in Python that hides or extracts secret text within image files (PNG/JPG).
It provides a user-friendly interface for both embedding and revealing hidden messages using pixel manipulation techniques — ideal for privacy testing, CTFs, or basic stego learning.The app includes a Tkinter-based GUI, allowing users to select images, encode text into them, and later decode it without requiring any command-line interaction.
Tech Used: Python, PIL (Pillow), Tkinter, OS
Focus Areas: Steganography, image obfuscation, privacy tools, GUI development