
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.
extsprintf
Advanced tools
The extsprintf npm package provides extended sprintf-style formatting capabilities. It is designed to offer more powerful and flexible string formatting options than the traditional sprintf function found in many programming languages. This package allows for formatting strings with placeholders, enabling the insertion of variable content in a template-like fashion. It supports various formatting types, including numbers, strings, and JSON objects, making it suitable for a wide range of applications such as logging, message formatting, and text processing.
Basic String Formatting
This feature allows for basic string formatting using placeholders for strings (%s) and decimal integers (%d). It is useful for constructing messages with dynamic values.
"%s is %d years old.", 'John', 25
Conditional Formatting
Conditional formatting supports inserting values from an object into a string based on property names. This is particularly useful for templating and creating more readable code.
"%(name)s is %(age)d years old.", { name: 'John', age: 25 }
JSON Formatting
This feature allows for the formatting of objects as JSON strings using the %j placeholder. It's useful for logging or displaying structured data in a string format.
"%j", { name: 'John', age: 25 }
sprintf-js offers similar sprintf-style formatting capabilities. It provides a rich set of format specifiers and is widely used for string formatting. Compared to extsprintf, sprintf-js focuses more on the traditional sprintf functionality and might not offer some of the extended features found in extsprintf.
Stripped down version of s[n]printf(3c). We make a best effort to throw an exception when given a format string we don't understand, rather than ignoring it, so that we won't break existing programs if/when we go implement the rest of this.
This implementation currently supports specifying
Everything else is currently unsupported, most notably: precision, unsigned numbers, non-decimal numbers, and characters.
Besides the usual POSIX conversions, this implementation supports:
%j
: pretty-print a JSON object (using node's "inspect")%r
: pretty-print an Error objectFirst, install it:
# npm install extsprintf
Now, use it:
var mod_extsprintf = require('extsprintf');
console.log(mod_extsprintf.sprintf('hello %25s', 'world'));
outputs:
hello world
printf: same args as sprintf, but prints the result to stdout
fprintf: same args as sprintf, preceded by a Node stream. Prints the result to the given stream.
FAQs
extended POSIX-style sprintf
The npm package extsprintf receives a total of 24,735,232 weekly downloads. As such, extsprintf popularity was classified as popular.
We found that extsprintf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 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.