https://github.com/44kia244/lorem-encode
A useless binary-to-text encoder created for sending a blocked file over FB Messenger
https://github.com/44kia244/lorem-encode
encoding javascript js library nodejs
Last synced: 5 months ago
JSON representation
A useless binary-to-text encoder created for sending a blocked file over FB Messenger
- Host: GitHub
- URL: https://github.com/44kia244/lorem-encode
- Owner: 44kia244
- Created: 2019-03-03T15:28:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T14:45:49.000Z (over 3 years ago)
- Last Synced: 2025-08-25T16:37:33.398Z (10 months ago)
- Topics: encoding, javascript, js, library, nodejs
- Language: JavaScript
- Size: 14.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lorem-encode
This is a binary-to-text encoder that replace a byte into a predefined unique string, and then use the same string set to decode back into binary. This can bypass the security check of facebook messenger, but require receiver to use this program to decode it.
*Note: I created this just for fun. No update or maintenance.*
# Installation
```bash
npm -g install lorem-encode
```
## How to use
```bash
# binary-to-text encoding
lorem-encode source.zip encoded.txt
# text-to-binary decoding
lorem-encode -d encoded.txt decoded.zip
```
## Configuration
The `keys.json` included with this repository is the configuration file. It contains 256 no-space unique word each for 0x00 to 0xFF representation.
```
[
"quae",
"omnis",
"velit",
"weakness",
"ullamco",
.
.
.
"elit",
"earum",
"exercitation"
]
```