
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
binary-extensions
Advanced tools
The binary-extensions npm package provides a list of binary file extensions. This package can be used to check if a file extension is generally considered to be binary. It is useful when handling file uploads, file processing, or any other file-related operations where knowing if a file is binary or text can be crucial.
Check if an extension is binary
This code checks if the 'png' extension is included in the list of binary extensions, indicating that files with this extension are binary.
const binaryExtensions = require('binary-extensions');
if (binaryExtensions.includes('png')) {
console.log('The file extension is binary.');
} else {
console.log('The file extension is not binary.');
}
This package provides a function to check if a given path is a binary file path. It is similar to binary-extensions but works with full file paths instead of just extensions.
As the counterpart to binary-extensions, text-extensions provides a list of text file extensions. It can be used to determine if a file extension is generally considered to be text, which is the opposite use case of binary-extensions.
List of binary file extensions
The list is just a JSON file and can be used wherever.
$ npm install --save binary-extensions
var binaryExtensions = require('binary-extensions');
console.log(binaryExtensions);
//=> ['3ds', '3g2', ...]
is-binary-path
- Check if a filepath is a binary fileMIT © Sindre Sorhus
FAQs
List of binary file extensions
The npm package binary-extensions receives a total of 51,048,597 weekly downloads. As such, binary-extensions popularity was classified as popular.
We found that binary-extensions demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.