claudio_101
claudio_101

Reputation: 45

Is my password encrypted before it gets send to the database?

If I would like to encrypt a password and store that encrypted password to a cloud database. How does this process work in Discord?

  1. Is the password send locally in plain text to the bot hosting. Encrypted there by the bot and then stored to the cloud db.

or

  1. Is the password encrypted locally in the Discrod app and is the locally encrypted password then send by the bot to the cloud db.

Upvotes: 1

Views: 523

Answers (1)

Dolidod Teethtard
Dolidod Teethtard

Reputation: 623

Discord (Like almost every web app) uses HTTPS protocol. So important data like passwords etc must be encrypted before sending (like you wrote in 2.). You can read more about SSL: https://www.google.com/search?q=how+ssl+works&oq=how+SSL+work&aqs=chrome.1.69i57j0l5.2239j0j7&sourceid=chrome&ie=UTF-8.

If you want to see it on example, you can do it easily using Wireshark. Wireshark is app which shows you EVERYTHING what your device are sending and reciving. You can download it here from here (For Mac and Windows): https://www.wireshark.org/download.html

Command for download it for linux:

sudo apt-get install wireshark

Upvotes: 1

Related Questions