On this forum, in addition to buying / selling cryptocurrencies and buying various digital goods, there is also trade in physical goods, which are then delivered to you. And here the question arises: what to do with your personal data? On the forum, I still meet similar questions, even among old members who are faced with such deals for the first time.
Never send your personal data to PM, and this applies not only to this forum, but also to other sites. Even if you trust a person, your personal data can be compromised:
- account of the person to whom you sent your personal data can be hacked and then the correspondence will be in the hands of the attacker;
- site on which the correspondence was conducted may be hacked;
- recipient's account can be associated with a mailbox to which incoming messages are duplicated, and if his mail is hacked, then your personal data may be in insecure hands;
To avoid leaving such traces, use a self-destructing note service, for example:
Privnote.
Thus, you protect your data from accidental storage in the correspondence of other people or site servers.
How to use this method: 1. You want to buy something on the forum, be it a collectible or mining equipment. To do this, you agree with the seller and he asks you to send him the data for sending the goods.
2. Open Privnote and write your data:
3. You can also select additional options:
- choose when the note will be destroyed (immediately after reading or after a certain time)
- set a password to encrypt note
- indicate the e-mail to which you will receive a notification that your note has been read and destroyed (do not use your main e-mail for this purpose)
4. After creating a note, a link will be created, which will also indicate when exactly this note will be destroyed:
5. After generating the link, send it to the seller with whom you completed the deal. He will read this note and it will be destroyed. Thus, you will protect your personal data from further storage in someone's correspondence or on the server.
How does privnote work and is it really safe to send messages with private information?
What happens when you create a note: - You write the note and click the POST button
- The server generates a random note id, let's call it the NoteID. This is the 16 chars ID you see in the note link
- The server hashes the note ID and gets a HashedNoteID = Hash(NoteID). We're currently using SHA-1 as the hashing algorithm, but the particular algorithm is not very important here
- The server encrypts the note contents (and also the email and reference, if there is any) using the NoteID, and stores the encrypted version in the database using the HashedNoteID as the database primary key
If someone with access to the database would like to read the note she would be unable because she doesn't have the key to decrypt it (NoteID), only the database primary key (HashedNoteID). The HashedNoteID cannot be used to "go back" to the NoteID because hashes are "one-way". So the only person who can actually decrypt (and thus see) the note is the one who has the original NoteID or, in other words, the one who has the link to the note.
What happens when you open a note: - The server extracts the NoteID from the URL
- The server hashes the NoteID and gets the HashedNoteID. This is the same HashedNoteID used when generating the note, since the NoteID used to make the hash is the same in both cases
- The server retrieves the note from the database using HashedNoteID as the database primary key and decrypts its contents using NoteID as the encryption key
- The server shows the page with the decrypted note
- The server permanently deletes the note from the database, keeping only a record of the HashedNoteID, the time when it was read, and the IP address where it was read from, to show it when someone tries to see the note again