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.
uri-template
Advanced tools
Parse and expand URI templates as defined by http://tools.ietf.org/html/rfc6570
This is a node.js implementation of the URI template draft standard defined at http://tools.ietf.org/html/rfc6570
var parser = require("uri-template");
var tpl = parser.parse("/{year}/{month}/{day}{?orderBy,direction}");
tpl.expand({ year: 2006, month: 6, day: 6 });
// /2006/6/6
tpl.expand({ year: 2006, month: 6, day: 6, orderBy: "size" });
// /2006/6/6?orderBy=size
tpl.expand({ year: 2006, month: 6, day: 6, orderBy: "time", direction: "asc" });
// /2006/6/6?orderBy=time&direction=asc
var queryTpl = parser.parse("/search{?q,otherParams*}");
queryTpl.expand({
q: "Bigger office",
otherParams: { prefer: "Sterling's office", accept: "Crane's office" },
});
// /search?q=Bigger%20office&prefer=Sterling%27s%20office&accept=Crane%27s%20office
For more thorough coverage of the syntax, see the RFC.
FAQs
Parse and expand URI templates as defined by http://tools.ietf.org/html/rfc6570
The npm package uri-template receives a total of 89,477 weekly downloads. As such, uri-template popularity was classified as popular.
We found that uri-template demonstrated a not healthy version release cadence and project activity because the last version was released 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.
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.