Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dnicolson/node-irestore
💾 Utility to extract files and Keychain information from iOS backups
https://github.com/dnicolson/node-irestore
Last synced: about 2 months ago
JSON representation
💾 Utility to extract files and Keychain information from iOS backups
- Host: GitHub
- URL: https://github.com/dnicolson/node-irestore
- Owner: dnicolson
- Created: 2022-09-29T18:50:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-06T19:14:16.000Z (7 months ago)
- Last Synced: 2024-10-05T02:21:07.310Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 348 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# irestore
A wrapper around the [iOS Backup Extraction](https://github.com/dunhamsteve/ios) Go program. It is based on a [fork](https://github.com/dnicolson/irestore) which has some modifications, most importantly replacing the first argument with the path to the backup rather than the GUID.
## Installation
The Go binary can be installed globally:
```
npm i -g irestore
```The Node.js package can also be installed locally:
```
npm i irestore
```## Usage
The Go binary [README](https://github.com/dnicolson/irestore) documents the command line arguments.
A backup can be restored with the following commands:
```
const IRestore = require('irestore');
const iRestore = new IRestore('/path/to/backup');
await iRestore.restore('HomeDomain', '/path/to/decrypted-backup');
```## License
MIT.