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.
sitemap-getter
Advanced tools
Yes, another parser. But unlike the others, it returns the entire information from a sitemap, not only the list of URLs.
npm install sitemap-getter --save
import SitemapGetter from 'sitemap-getter';
const stream = await SitemapGetter.createStreamLocations(`https://your-website.com/sitemap.xml`);
stream.on('data', (loc) => {
console.dir(loc);
});
Note that the result stream works in object mode
, so you will need to make a transform stream to be able to .pipe()
it to something like process.stdout
Result:
{ loc: 'https://your-website.com/' }
{ loc: 'https://your-website.com/pzwfCkCN2KmjRRERX',
lastmod: 2017-07-09T22:00:00.000Z }
{ loc: 'https://your-website.com/wNppu4ncxfS2fQ6to',
lastmod: 2017-12-20T18:28:53.000Z }
import SitemapGetter from 'sitemap-getter';
const data = await SitemapGetter.getLocations(`https://your-website.com/sitemap.xml`);
console.dir(data);
Result:
[ { loc: 'https://your-website.com/' },
{ loc: 'https://your-website.com/pzwfCkCN2KmjRRERX',
lastmod: 2017-07-09T22:00:00.000Z },
{ loc: 'https://your-website.com/wNppu4ncxfS2fQ6to',
lastmod: 2017-12-20T18:28:53.000Z } ]
Feel free to make some PRs and\or forks.
Enjoy!
FAQs
Fetch sitemap entirely or using streams
The npm package sitemap-getter receives a total of 0 weekly downloads. As such, sitemap-getter popularity was classified as not popular.
We found that sitemap-getter 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
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.