![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
nFreezer (for encrypted freezer) is an encrypted-at-rest backup tool, designed specifically for the case when the destination server is untrusted. With nFreezer, the data is safe on the destination server even if a malicious user gets root access to it.
Use case: you can store your private data on a friend's computer, or on a remote server on which you never had physical access and that you don't fully trust.
encrypted-at-rest: the data is encrypted locally (using AES), then transits encrypted, and stays encrypted on the destination server. The destination server never gets the encryption key, the data is never decrypted on the destination server.
incremental and resumable: if the data is already there on the remote server, it won't be resent during the next sync. If the sync is interrupted in the middle, it will continue where it stopped (last non-fully-uploaded file). Deleted or modified files in the meantime will of course be detected.
graceful file moves/renames/data duplication handling: if you move
/path/to/10GB_file
to /anotherpath/subdir/10GB_file_renamed
, no data will be re-transferred over the network.
This is supported by some other sync programs, but very rarely in encrypted-at-rest mode.
Technical sidenote: the SHA256 hashes of the unencrypted files are stored encrypted on the destination (phew!). Thus, no SHA256 hash could be accessed (to get information about your data) in the event of a breach on the destination server.
stateless: no local database of the files present on destination is kept. Drawback: this means that if the destination already contains 100,000 files, the local computer needs to download the remote filelist (~15MB) before starting a new sync; but this is acceptable for me.
does not need to be installed on remote: no binary needs to be installed on remote, no SSH "execute commands" on the remote, only SFTP is used
single .py file project: you can read and audit the full source code by looking at nfreezer.py
, which is currently < 300 lines of code.
You need Python 3.6+, and to do:
pip install nfreezer
and that's all.
(An alternative installation method is to install the requirements with pip install pysftp pycryptodome
and just copy the single file nfreezer.py
where you want to use it.)
import nfreezer
nfreezer.backup(src='test/', dest='user@192.168.0.2:/test/', sftppwd='pwd', encryptionpwd='strongpassword')
or, from command-line:
nfreezer backup test/ user@192.168.0.2:/test/ # Linux
nfreezer backup "D:\My docs\" user@192.168.0.2:/test/ # Windows
import nfreezer
nfreezer.restore(src='user@192.168.0.2:/test/', dest='restored/', sftppwd='pwd', encryptionpwd='strongpassword')
or, from command-line:
nfreezer restore user@192.168.0.2:/test/ restored/
Alternatively, if you prefer, you can also copy the remote backuped files (encrypted-at-rest) to a local directory backup_copied/
and restore with nFreezer from this local directory:
nfreezer restore backup_copied/ restored/
These are the key points that were important for me, and that's why I coded this tool, but I totally agree it's subjective, and one could easily make a similar table with all the boxes checked for another program and none for mine.
Not handling renames gracefully (and thus retransfer data over the network again and again) was a no-go for me because I often move or rename directories containing multimedia projects with gigabytes of data.
- | nFreezer | Rsync | Rclone | Syncthing | Duplicity |
---|---|---|---|---|---|
encrypted-at-rest | ⚫ | ⚫ (Crypt) | ⚪ (experimental) | ⚫ | |
no local database | âš« | âš« | âš« | ? | |
no install needed on remote | âš« | âš« | ? | ||
handles renames gracefully | âš« | (surprisingly, no) | (not with Crypt) | âš« |
In order to keep the small-single-file requirement and because maintaining and merging code is a demanding task, this project currently does not accept pull requests.
However, Github issues, including snippets of code, are welcome.
This software is in the early stages of its distribution, at the time of writing (Nov. 2020), so use it at your own risk, and please don't use it for data for which you don't have other backup.
Joseph Ernest
MIT with free-of-charge-redistribution clause, see the LICENSE file.
FAQs
nFreezer is an encrypted-at-rest backup tool over SFTP.
We found that nFreezer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.