BinCat is a robust token management system designed for secure token generation, validation, and database handling. This project leverages encryption, logging, and modular Python components to offer a flexible solution for managing tokens in various applications. It includes tools to maintain system integrity and ensures ease of use for developers.
-
Secure Token Generation:
- Generates unique, encrypted tokens using the Fernet encryption standard.
- Ensures tokens cannot be reverse-engineered or tampered with.
-
Token Validation:
- Validates token authenticity and checks expiration status.
-
Efficient Database Handling:
- SQLite-based database to store tokens with timestamps.
- Supports token revocation for added security.
-
Utilities:
- Purge script to clear logs and database entries.
- Tool to generate new encryption keys safely.
-
Modular Design:
- Separated components for token generation, validation, and management.
- Easy to extend and integrate with other systems.
.env
.gitignore
api.py
bincat_tokens.db
LICENSE
main.py
README.md
requirements.txt
setup.py
.github/
dependabot.yml
bincat/
token_generator.py
token_manager.py
token_validator.py
__init__.py
tools/
encryption_key_gen.py
purge.py
tests/
test_bincat.py
test_token_manager.py
__init__.py
- Python 3.10 or later
- SQLite (built into Python)
pip
for package management
-
Clone the repository:
git clone https://github.com/your-username/BinCat.git cd BinCat
-
Set up a virtual environment (optional but recommended):
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Generate an encryption key (if not already generated):
python tools/encryption_key_gen.py
This will create a
.env
file containing the encryption key.
Execute the main script:
python main.py
- Generate Token: Automatically creates a new secure token.
- Validate Token: Checks if a token is valid and not expired.
- Revoke Token: Marks a token as revoked to prevent its further use.
- Purge Logs and Database:
Clear all logs and reset the database:
python tools/purge.py
- Generate New Encryption Key:
Create a new encryption key for enhanced security:
python tools/encryption_key_gen.py
Note: Changing the encryption key will invalidate all existing tokens.
- Python: Core language for development.
- SQLite: Lightweight database for token storage.
- Cryptography: Secure encryption and decryption.
- Colorama: Console color formatting.
Unit tests are located in the tests
folder. To run the tests:
python -m unittest discover -s tests
Contributions are welcome! Follow these steps to contribute:
- Fork the repository.
- Create a new branch for your feature or bug fix:
git checkout -b feature-name
- Commit your changes:
git commit -m "Description of changes"
- Push the branch:
git push origin feature-name
- Open a Pull Request.
This project is licensed under the MIT License. See the LICENSE
file for details.
For questions or suggestions, feel free to reach out:
If you found this project helpful, consider giving it a ⭐ on GitHub!