Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
hunspell-reader
Advanced tools
A library for reading Hunspell Dictionary files
This reader can be used as a tool for converting Hunspell files into a simple text file with one word per line.
npm install -g hunspell-reader
It has basic command line help.
hunspell-reader words --help
Outputs:
Usage: words [options] <hunspell_dic_file>
Output all the words in the <hunspell.dic> file.
Options:
-h, --help output usage information
-o, --output <file> output file - defaults to stdout
-s, --sort sort the list of words
-u, --unique make sure the words are unique.
-i, --ignore_case used with --unique and --sort
-l, --lower_case output in lower case
-T, --no-transform Do not apply the prefix and suffix transforms. Root words only.
To convert a Hunspell dictionary to a word list, you will need both the .dic
and .aff
files.
For example en_US comes with two files: en_US.dic
and en_US.aff
.
This tool assumes they are both in the same directory.
Assuming these files are in the current directory, the following command will write the words
to en_US.txt
.
hunspell-reader words ./en_US.dic -o en_US.txt
install -S hunspell-reader rxjs
Note: the reader uses rxjs 5.0.
Typescript / Javascript:
import { HunspellReader } from 'hunspell-reader';
const baseFile = 'en_US';
const dicFile = baseFile + '.dic';
const affFile = baseFile + '.aff';
// Initialize the reader with the Hunspell files
const reader = new HunspellReader(affFile, dicFile);
// Get the words as an array
const promiseArrayOfWords = reader.readWords()
.toArray()
.toPromise();
FAQs
A library for reading Hunspell Dictionary Files
The npm package hunspell-reader receives a total of 477 weekly downloads. As such, hunspell-reader popularity was classified as not popular.
We found that hunspell-reader demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.