Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
httpjamesm committed Apr 8, 2024
2 parents 59dd6c9 + 38c083e commit cdae987
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# ScatterSafe

We all have important secrets we need to secure from prying eyes, yet we must ensure we have access to them in the event of an emergency. Crypto seeds, backup TOTP secrets for essential accounts, among other sensitive information. ScatterSafe is a simple, secure, and easy to use solution for storing this information.
We all have sensitive secrets we need to secure from prying eyes. Yet, we must ensure we have access to them in an emergency—crypto seeds, TOTP secrets for essential accounts, among other sensitive information. ScatterSafe is a simple, secure, and easy-to-use solution for storing this information.

This project exists because another company, called [Superbacked](https://superbacked.com), is charging a minimum of $149 USD for a similar service, which simply doesn't make sense. Furthermore, unlike Superbacked, this project is free and open-source, so anyone can inspect the code and ensure that it's not malicious.
This project exists because another company, named [Superbacked](https://superbacked.com), charges a minimum of **$149** for a similar service, which doesn't make sense. Furthermore, unlike Superbacked, this project is free and open-source, so anyone can inspect the code and ensure it's not malicious.

![ScatterSafe Split Light](https://cdn.horizon.pics/yVfDx4M6TFDXc9P31W6bqx7CeEoFVl.png)
![ScatterSafe Split Light](https://files.horizon.pics/aa2f658b-6a7e-4a46-8846-821b40716a85?a=1&mime1=image&mime2=png)

![ScatterSafe Recover Light](https://cdn.horizon.pics/v3I9Jls7pqKhLP46P60sgxsETBxHrt.png)
![ScatterSafe Recover Light](https://files.horizon.pics/b4dee93a-50d8-477f-81c2-f5b1d1088c12?a=1&mime1=image&mime2=png)

![ScatterSafe Split Dark](https://cdn.horizon.pics/W6mLKRPZdFeIplLQddkCrzLBiKMea0.png)
![ScatterSafe Split Dark](https://files.horizon.pics/0efb38eb-a0da-4b53-99bd-b7c040cfc6c7?a=1&mime1=image&mime2=png)

![ScatterSafe Recover Dark](https://cdn.horizon.pics/4GlKXV1zFEWZTPjpDscsbSJqOozMnJ.png)
![ScatterSafe Recover Dark](https://files.horizon.pics/e0ec9ab7-3879-4ffb-8cc6-71fa5ec5d42d?a=1&mime1=image&mime2=png)

## The Problem

Many trivial methods of storing this information that may come to mind are flawed.
Many of the known methods of storing this data that come to mind are flawed.

### Password Managers

Password managers are secure thanks to their end-to-end encryption, but if you lose that decryption password, all your data is lost forever. There is also the risk of spyware viewing the decrypted contents of your password manager (while it's unlocked and the key is in memory), or a malicious password manager app.
Password managers are secure thanks to their end-to-end encryption, but if you lose that decryption password, all your data is lost forever. There is also the risk of spyware viewing the decrypted contents of your password manager (while it's unlocked and the key is in memory) or a malicious password manager app.

### Pen and Paper

Pen and paper is a simple solution, but it's not secure. If someone finds your notes, they can read them. If you lose your notes, they're gone forever.
Pen and paper is a simple solution, but it's not secure. If someone finds your notes, someone else now possesses your secrets. Attempting to prevent this while also remembering where you left them can be difficult and result in them being misplaced and lost forever.

### USB Drives

USB drives by default are not encrypted. Regardless of if the drive encrypted, you could lose the drive, and your important data with it.
USB drives, by default, are not encrypted. Regardless of whether the drive is encrypted, you could lose it along with your critical data.

## The Solution

Expand All @@ -40,6 +40,6 @@ The secret is encrypted with your password using XSalsa20.

ScatterSafe creates 3 QR codes from the split encrypted secret. These QR codes can be printed and stored in different locations.

If you ever need to access your secret, you can use any 2 of the 3 QR codes to reconstruct the encrypted secret. You can then decrypt the secret with your password.
If you ever need to access your secret, you can use 2 of the 3 QR codes to reconstruct the encrypted secret. You can then decrypt the secret with your password.

This is both a **secure** and **reliable** way of backing up important information because an attacker would have to know where to find at least 2 of your 3 QR codes, along with the password used to encrypt the original secret. If for some reason you cannot access all 3, perhaps due to a natural disaster, you can still access your secret by using the remaining QR codes.
This method provides both a **secure** and **reliable** way of backing up important information. An attacker must know where to find at least 2 of your 3 QR codes and the password used to encrypt the original secret. If for some reason, you cannot access all three due to a natural disaster or similar, you can still access your secret by using the remaining QR codes.

0 comments on commit cdae987

Please sign in to comment.