https://github.com/goodmanwen/reverser
Gadget to reverse binary files before you upload them to Github. Easy to use.
https://github.com/goodmanwen/reverser
Last synced: about 1 year ago
JSON representation
Gadget to reverse binary files before you upload them to Github. Easy to use.
- Host: GitHub
- URL: https://github.com/goodmanwen/reverser
- Owner: GoodManWEN
- License: mit
- Created: 2021-11-07T19:50:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-10T04:23:55.000Z (over 4 years ago)
- Last Synced: 2025-02-09T20:41:29.826Z (over 1 year ago)
- Language: Rust
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reverser
Gadget to reverse binary files before you upload them to Github. Easy to use.
## Usage
To encode file in a folder: (recursively reverse all binary files in the current folder and subfolders)
```
reverser --enc
```
To decode them:
```
reverser --dec
```
Or just double-click to run, the program is considered to be in decoding mode by default.
## Notes
This program was originally designed to reverse images to be uploaded to Github, there are special optimizations for image files, which is evident in the source code.
These parts of design are:
1. It will only monitor files ending with a specific extension.
2. It will read the header of the file, and when a file is considered to be already reversed, it will not flip this file again if it is executed in `--enc` mode, and vice versa.
3. If you need to monitor other types of files, please modify the source code yourself.