Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@malvineous/gamecomp
Advanced tools
Apply and remove compression and encryption algorithms used by DOS games
Copyright 2018 Adam Nielsen <malvineous@shikadi.net>
This is a Javascript library that can pass data through different algorithms used by MS-DOS games from the 1990s. Typically this is used to compress and decompress game data, as well as encrypt and decrypt it too.
If you wish to use the command-line gamecomp
utility to work with the
algorithms directly, you can install the library globally on your system:
npm install -g @malvineous/gamecomp
The gamecomp
utility can be used to apply and reverse algorithms on data.
Data to process is supplied on stdin
and the processed data is sent to
stdout
. Use the --help
option to get a list of all the available options.
Some quick examples:
# List supported algorithms and their options
gamecomp --formats
# Compress a file using LZW with some custom options
gamecomp +cmp-lzw cwEOF=256 cwFirst=257 < clear.txt > out.lzw
# Decrypt a file with an XOR cipher using the default options
gamecomp -enc-xor-blood < crypt.bin > clear.bin
When specifying the algorithm in the first parameter, it is prefixed with a +
to apply the algorithm (compress/encrypt) or a -
to reverse it
(decompress/decrypt).
If you wish to make use of the library in your own project, install it in the usual way:
npm install @malvineous/gamecomp
See cli/index.js
for example use. The quick start is:
const GameCompression = require('@malvineous/gamecomp');
// Decompress a file
const cmpAlgo = GameCompression.getHandler('cmp-lzw');
const input = fs.readFileSync('data.lzw');
const output = cmpAlgo.reveal(content);
fs.writeFileSync('data.raw', output);
// Encrypt the file with custom options
const crypto = GameCompression.getHandler('enc-xor-blood');
const output = crypto.obscure(input, {
seed: 123,
});
fs.writeFileSync('data.xor', output);
If you would like to help add more file formats to the library, great! Clone the repo, and to get started:
npm install --dev
Run the tests to make sure everything worked:
npm test
You're ready to go! To add a new algorithm:
Create a new file in the relevant subfolder for the algorithm type, such as
compress/
or encrypt/
.
Edit the main index.js
and add a require()
statement for your new file.
Make a folder in test/
for your new algorithm and populate it with
files similar to the others. The tests work by passing standard data to
each algorithm and comparing the result to what is inside this folder.
You can either create these files by hand, with another utility, or if you are confident that your code is correct, from the code itself. This is done by setting an environment variable when running the tests, which will cause the data produced by your code to be saved to a temporary file in the current directory:
SAVE_FAILED_TEST=1 npm test
mv error1.bin test/cmp-myformat/default.bin
During development you can test your algorithm like this:
$ ./bin/gamecomp --debug -cmp-myformat param=value < data.bin
If you use Debug.log
rather than console.log
then these messages can be left
in for future diagnosis as they will only appear when --debug
is given.
FAQs
Apply and remove compression and encryption algorithms used by DOS games
The npm package @malvineous/gamecomp receives a total of 3 weekly downloads. As such, @malvineous/gamecomp popularity was classified as not popular.
We found that @malvineous/gamecomp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.