Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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 } ]
NodeJS
to run at is 4.8
, but you can go to .gulpfile
, set the other number and re-build the package with gulp
command.Feel free to make some PRs and\or forks.
Enjoy!
FAQs
Fetch sitemap entirely or using streams
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.