https://github.com/mauricelambert/cutfiledichotomy
This tool cuts a target file recursively.
https://github.com/mauricelambert/cutfiledichotomy
archive dichotomy malware-detection
Last synced: 3 months ago
JSON representation
This tool cuts a target file recursively.
- Host: GitHub
- URL: https://github.com/mauricelambert/cutfiledichotomy
- Owner: mauricelambert
- License: gpl-3.0
- Created: 2023-12-28T17:51:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-12T12:49:29.000Z (over 1 year ago)
- Last Synced: 2025-01-14T09:14:42.458Z (5 months ago)
- Topics: archive, dichotomy, malware-detection
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

# CutFileDichotomy
## Description
This tool cuts a target file recursively.
> I used this script to identify malware in archive file without any compression.
>> I didn't know the algorithm to extract files from a very large archive containing a virus. So I cut the archive file several times with this script to scan the smallest file containing the malware. The antivirus detected all the files containing the virus, so I analysed the smallest file and reversed the malware.## Requirements
### Download binary
- *No requirements*
### Compilation
- Go
- Go Standard library## Installation
### Download
Download the executable from [Github](https://github.com/mauricelambert/CutFileDichotomy/releases/latest/).
### Compilation
```bash
git clone https://github.com/mauricelambert/CutFileDichotomy.git
cd CutFileDichotomy
go build CutFileDichotomy.go
```## Usages
```bash
CutFileDichotomy [filename] (size)
CutFileDichotomy malware.bin
CutFileDichotomy malware.bin 2048
```## Links
- [Executable - Github](https://github.com/mauricelambert/MaliciousFileDetector/releases/latest/)
## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).