Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rigwild/discord-client-crypted-microservice
A microservice to chat on Discord using client-side encryption (makes MITM SSL proxies useless)
https://github.com/rigwild/discord-client-crypted-microservice
decryption discord encryption microservice sfw
Last synced: 16 days ago
JSON representation
A microservice to chat on Discord using client-side encryption (makes MITM SSL proxies useless)
- Host: GitHub
- URL: https://github.com/rigwild/discord-client-crypted-microservice
- Owner: rigwild
- License: mit
- Created: 2020-02-04T10:22:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-20T16:01:20.000Z (over 3 years ago)
- Last Synced: 2024-10-16T19:22:51.922Z (about 1 month ago)
- Topics: decryption, discord, encryption, microservice, sfw
- Language: JavaScript
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# discord-client-crypted-microservice
A microservice to chat on Discord using client-side encryption (makes MITM SSL proxies useless).## Install
```sh
git clone https://github.com/rigwild/discord-client-crypted-microservice
cd discord-client-crypted-microservice
yarn
```## Release build
You can find a version with the front-end already built at the [Releases page](https://github.com/rigwild/discord-client-crypted-microservice/releases).Keep in mind you still need to [install dependencies](#install).
## Build
You need [Parcel bundler](https://github.com/parcel-bundler/parcel) to build the project.
```sh
yarn global add parcel-bundler
```You can then build it.
```sh
yarn client:build
```Or check [Release build](#release-build)
## Configuration
Copy [`.server.env.example`](`.server.env.example`) to `.server.env`.| Variable | Description |
| -------- | ----------- |
| `secret` | AES secret used to encrypt/decrypt messages, should be long and secure |
| `serverPort` | HTTP/WS port the server will listen on |
| `discordChannelId` | Discord channel ID to chat with |
| `discordToken` | Discord bot (or user) authentication token |## Start
```sh
yarn server:start
```## Screenshot
![App screenshot](screenshot.jpg)## License
[The MIT License](./LICENSE).