Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mauricelambert/diskcloner
This repository implements a cross-platform disk cloner written in C and an optional python CLI.
https://github.com/mauricelambert/diskcloner
clone-disk disk-clone disk-image forensics investigations
Last synced: about 1 month ago
JSON representation
This repository implements a cross-platform disk cloner written in C and an optional python CLI.
- Host: GitHub
- URL: https://github.com/mauricelambert/diskcloner
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2023-09-09T17:28:23.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-10T19:48:31.000Z (over 1 year ago)
- Last Synced: 2024-07-30T18:07:30.054Z (5 months ago)
- Topics: clone-disk, disk-clone, disk-image, forensics, investigations
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# DiskCloner
## Description
This repository implements a cross-platform disk cloner written in C and an optional python CLI.
## Requirements
There is no requirements.
Optional:
- Python3
- Python3 Standard Library## Installation
### Compilation
```bash
git clone "https://github.com/mauricelambert/DiskCloner.git"
cd "DiskCloner"
gcc -O5 FileCloner.c -o FileCloner.exe
./FileCloner.exe sdb sdDisk.bin
```### Download
#### Windows
```bash
git clone "https://github.com/mauricelambert/DiskCloner.git"
cd "DiskCloner"
wget https://mauricelambert.github.io/info/python/security/libFileCloner.dll
python WindowsDiskClonerInterface.py "SD Card" sdDisk.bin
``````bash
wget https://mauricelambert.github.io/info/python/security/WindowsFileCloner.exe
WindowsFileCloner.exe "\\.\PHYSICALDRIVE1" sdDisk.bin
```#### Linux
```bash
git clone "https://github.com/mauricelambert/DiskCloner.git"
cd "DiskCloner"
wget https://mauricelambert.github.io/info/python/security/libFileCloner.so
python3 LinuxDiskClonerInterface.py sdb sdDisk.bin
``````bash
wget https://mauricelambert.github.io/info/python/security/LinuxFileCloner
./LinuxFileCloner sdb sdDisk.bin
```## Usages
### Command line
```bash
./FileCloner.exe sdb sdDisk.bin
python3 LinuxDiskClonerInterface.py sdb sdDisk.bin # Linux
python WindowsDiskClonerInterface.py "SD Card" sdDisk.bin # Windows
```## Links
- [Github](https://github.com/mauricelambert/DiskCloner)
- [Linux executable](https://mauricelambert.github.io/info/python/security/LinuxFileCloner)
- [Linux Shared Object](https://mauricelambert.github.io/info/python/security/libFileCloner.so)
- [Windows executable](https://mauricelambert.github.io/info/python/security/WindowsFileCloner.exe)
- [Windows DLL](https://mauricelambert.github.io/info/python/security/libFileCloner.dll)## License
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).