Skip to content

Enigma Password Manager is a secure application for managing passwords. It allows users to save, retrieve, update, and delete passwords easily. Built with Flask and MySQL, it prioritizes user data security and offers future enhancements like encryption and user authentication for added protection.

Notifications You must be signed in to change notification settings

akshayjith4/Enigma-Password-Manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🔒 Enigma - Your Secret Keeper

Welcome to Enigma! 🧙‍♂️ The ultimate password manager that keeps your secrets safer than a dragon guarding its treasure! Whether you're juggling a dozen passwords like a circus performer or just want to keep your social media accounts secure, Enigma is here to save the day (and your passwords)!

🚀 Features That Make You Go "Wow!"

  • Add a New Password: Store passwords for your favorite apps like a wizard hoarding gold coins! 🪙
  • Retrieve a Password: Need to remember that elusive app login? Just summon it from Enigma!
  • Update a Password: Change your passwords more often than your socks? Update them effortlessly! 🧦
  • Delete a Password: No longer using that app? Wave goodbye and delete its password with a flick of your wrist!

💻 Technologies Used

  • Backend: Built with Flask (Python) – because who doesn’t love a little Python magic? 🐍✨
  • Database: MySQL – for all your password-storing needs. Think of it as your enchanted vault! 🔒
  • Frontend: Just some basic HTML forms for interaction. Simplicity is key, but we’ll dress it up later!

📦 Installation Guide - Let’s Get This Party Started!

Prerequisites

Before diving in, make sure you have the following:

  • 🐍 Python 3.x
  • 🗄️ MySQL Server
  • 🛠️ MySQL Workbench (optional, but it makes life easier)
  • 🔮 Flask
  • 🧙‍♂️ MySQL Connector for Python

Steps to Get Started

  1. Clone the Repository:

    git clone https://github.com/akshayjith4/enigma-password-manager.git
    cd enigma-password-manager
  2. Set Up a Virtual Environment (because who doesn’t love a cozy space?):

    python -m venv venv
    venv\Scripts\activate  # On Windows
    source venv/bin/activate  # On Linux/Mac
  3. Install All the Magic:

    pip install Flask mysql-connector-python
  4. Prepare the Database (Let’s channel our inner hacker): Open MySQL and run:

    CREATE DATABASE password_manager;
    USE password_manager;
    
    CREATE TABLE passwords (
        id INT AUTO_INCREMENT PRIMARY KEY,
        app_name VARCHAR(100),
        username VARCHAR(100),
        password VARCHAR(255)
    );
  5. Connect Flask to MySQL: Edit app.py and sprinkle in your database credentials like magic dust:

    db = mysql.connector.connect(
        host="localhost",
        user="your_mysql_username",        # Change this to your MySQL username
        password="your_mysql_password",     # Change this to your MySQL password
        database="password_manager"         # Ensure this matches the database you created
    )
  6. Launch the App Like a Boss:

    python app.py
  7. Open Your Browser: Type http://127.0.0.1:5000 in the address bar and voilà, you're in! 🎉

🧙‍♂️ Enigma's Magic Commands

Here’s how you control this mighty app with a wave of your wand terminal:

🛠️ Saving a Password

  • Endpoint: /save-password
  • Method: POST
  • Body:
    {
        "app_name": "AppName",
        "username": "YourUsername",
        "password": "SuperSecretPassword"
    }
  • Response:
    {
        "message": "Password saved! 🗝️"
    }

🔍 Fetching a Password

  • Endpoint: /get-password/<app_name>
  • Method: GET
  • Response:
    {
        "username": "YourUsername",
        "password": "SuperSecretPassword"
    }

✨ Updating a Password

  • Endpoint: /update-password
  • Method: PUT
  • Body:
    {
        "app_name": "NewAppName",
        "username": "NewUsername",
        "password": "NewSuperSecretPassword"
    }
  • Response:
    {
        "message": "Password updated successfully! 🔄"
    }

🗑️ Deleting a Password

  • Endpoint: /delete-password/<app_name>
  • Method: DELETE
  • Response:
    {
        "message": "Password deleted! 🗑️"
    }

🌟 Future Superpowers (aka Features)

We’re not done yet! Enigma has a bright future ahead:

  • Encryption: Lock your passwords down even tighter. 🛡️
  • User Authentication: Because passwords should be extra safe!
  • Improved UI: Making it even prettier to look at. 🎨

📄 License

This project is licensed under the MIT License. Feel free to use, modify, and distribute it as you like!

💬 Let's Chat!

Found a bug? Got a feature idea? Or just want to say "Hi!"? Feel free to open an issue or drop us a message. Your feedback is the magic potion that helps us grow! 🌱

For any updates or changes to the code, please contact me at:

Now go forth and secure your digital life with Enigma! 🚀🔐

About

Enigma Password Manager is a secure application for managing passwords. It allows users to save, retrieve, update, and delete passwords easily. Built with Flask and MySQL, it prioritizes user data security and offers future enhancements like encryption and user authentication for added protection.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published