{"id":20292482,"url":"https://github.com/mauricelambert/diskcloner","last_synced_at":"2026-05-29T01:32:01.800Z","repository":{"id":193737250,"uuid":"689401268","full_name":"mauricelambert/DiskCloner","owner":"mauricelambert","description":"This repository implements a cross-platform disk cloner written in C and an optional python CLI.","archived":false,"fork":false,"pushed_at":"2023-09-10T19:48:31.000Z","size":26,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T05:13:44.421Z","etag":null,"topics":["clone-disk","disk-clone","disk-image","forensics","investigations"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mauricelambert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-09-09T17:28:23.000Z","updated_at":"2024-06-21T03:55:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"ff29369c-4413-48f6-b87b-78a43d06b7f5","html_url":"https://github.com/mauricelambert/DiskCloner","commit_stats":null,"previous_names":["mauricelambert/diskcloner"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/mauricelambert/DiskCloner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FDiskCloner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FDiskCloner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FDiskCloner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FDiskCloner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mauricelambert","download_url":"https://codeload.github.com/mauricelambert/DiskCloner/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauricelambert%2FDiskCloner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33633468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clone-disk","disk-clone","disk-image","forensics","investigations"],"created_at":"2024-11-14T15:17:28.896Z","updated_at":"2026-05-29T01:32:01.765Z","avatar_url":"https://github.com/mauricelambert.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DiskCloner\r\n\r\n## Description\r\n\r\nThis repository implements a cross-platform disk cloner written in C and an optional python CLI.\r\n\r\n## Requirements\r\n\r\nThere is no requirements.\r\n\r\nOptional:\r\n - Python3\r\n - Python3 Standard Library\r\n\r\n## Installation\r\n\r\n### Compilation\r\n\r\n```bash\r\ngit clone \"https://github.com/mauricelambert/DiskCloner.git\"\r\ncd \"DiskCloner\"\r\ngcc -O5 FileCloner.c -o FileCloner.exe\r\n./FileCloner.exe sdb sdDisk.bin\r\n```\r\n\r\n### Download\r\n\r\n#### Windows\r\n\r\n```bash\r\ngit clone \"https://github.com/mauricelambert/DiskCloner.git\"\r\ncd \"DiskCloner\"\r\nwget https://mauricelambert.github.io/info/python/security/libFileCloner.dll\r\npython WindowsDiskClonerInterface.py \"SD Card\" sdDisk.bin\r\n```\r\n\r\n```bash\r\nwget https://mauricelambert.github.io/info/python/security/WindowsFileCloner.exe\r\nWindowsFileCloner.exe \"\\\\.\\PHYSICALDRIVE1\" sdDisk.bin\r\n```\r\n\r\n#### Linux\r\n\r\n```bash\r\ngit clone \"https://github.com/mauricelambert/DiskCloner.git\"\r\ncd \"DiskCloner\"\r\nwget https://mauricelambert.github.io/info/python/security/libFileCloner.so\r\npython3 LinuxDiskClonerInterface.py sdb sdDisk.bin\r\n```\r\n\r\n```bash\r\nwget https://mauricelambert.github.io/info/python/security/LinuxFileCloner\r\n./LinuxFileCloner sdb sdDisk.bin\r\n```\r\n\r\n## Usages\r\n\r\n### Command line\r\n\r\n```bash\r\n./FileCloner.exe sdb sdDisk.bin\r\npython3 LinuxDiskClonerInterface.py sdb sdDisk.bin         # Linux\r\npython WindowsDiskClonerInterface.py \"SD Card\" sdDisk.bin  # Windows\r\n```\r\n\r\n## Links\r\n\r\n - [Github](https://github.com/mauricelambert/DiskCloner)\r\n - [Linux executable](https://mauricelambert.github.io/info/python/security/LinuxFileCloner)\r\n - [Linux Shared Object](https://mauricelambert.github.io/info/python/security/libFileCloner.so)\r\n - [Windows executable](https://mauricelambert.github.io/info/python/security/WindowsFileCloner.exe)\r\n - [Windows DLL](https://mauricelambert.github.io/info/python/security/libFileCloner.dll)\r\n\r\n## License\r\n\r\nLicensed under the [GPL, version 3](https://www.gnu.org/licenses/).\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricelambert%2Fdiskcloner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmauricelambert%2Fdiskcloner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauricelambert%2Fdiskcloner/lists"}