Менеджер паролей на Python для Telegram
This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
StNicolay a1bed9014d Changed the way the master password hashing works
Switched from Bcrypt to Scrypt for master password hashing
Changed models to use new sizes for hashes and salts, doubled the size of enc_login and enc_passwd for accounts
Created new function to check master password validity
Increased salt sizes for accounts and master passwords
Removed bcrypt from requirements
2022-11-07 16:30:45 +03:00
src Changed the way the master password hashing works 2022-11-07 16:30:45 +03:00
.dockerignore Added data directory to .dockerignore 2022-11-02 18:29:54 +00:00
.gitignore Docker files 2022-10-14 18:54:29 +03:00
compose.yaml changed to the newer version of mariadb 2022-11-03 16:27:52 +00:00
Dockerfile switched mariadb connector to pymysql 2022-11-04 02:17:17 +03:00
LICENSE Changed License to General Public License v3.0 2022-09-25 18:49:39 +00:00
main.py Moved code to main func in src 2022-10-05 15:14:32 +03:00
README.md Added ability to import accounts 2022-11-02 14:48:15 +03:00
requirements-dev.txt Created file structure 2022-09-26 20:34:02 +03:00
requirements.txt Changed the way the master password hashing works 2022-11-07 16:30:45 +03:00

PassManager

Описание

Менеджер паролей для телеграм, где все пароли надёжно зашифрованы

Документация

База данных

В качестве базы данных данный бот использует mariadb, к которой бот должен иметь доступ всегда

Команды и их синтаксис

  • /set_master_pass - установить мастер пароль
  • /add_account - создать аккаунт
  • /get_accounts - получить список аккаунтов
  • /get_account - получить логин и пароль аккаунта
  • /delete_account - удалить аккаунт
  • /delete_all - удалить все аккаунты и мастер пароль
  • /reset_master_pass- удалить все аккаунты и изменить мастер пароль
  • /cancel - отмена текущего действия
  • /help - помощь
  • /export - получить пароли в json формате
  • /import - импортировать пароли из json в файле в таком же формате, как из /export

Настройка

Настройка производится через переменные среды. Их можно прописать в файле .env, если не хотите задавать их каждый раз в случае, если вы не используете Docker

Переменные среды

  • DB_HOST - ip адрес базы данных
  • DB_USER - пользователь базы данных
  • DB_PASS - пароль пользователя базы данных
  • DB_NAME - название базы данных
  • TG_TOKEN - токен телеграма, его следует указать в файле .env в формате TG_TOKEN={токен}