
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@dailyraisin/gulp-xslt
Advanced tools
XSL transformation plugin for gulp
example.xml
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar attr="value">baz</bar>
<bar>qux</bar>
</foo>
template.xsl
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="someVariable">defaultValue</xsl:param>
<xsl:param name="anotherVariable"/>
<xsl:template match="foo">
<output>
<xsl:attribute name="attr">
<xsl:value-of select="$someVariable"/>
</xsl:attribute>
<xsl:apply-templates select="$anotherVariable"/>
</output>
</xsl:template>
<xsl:template match="bar">
<xsl:copy-of select="."/>
</xsl:template>
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
</xsl:stylesheet>
task.js
var gulp = require('gulp');
var xslt = require('gulp-xslt');
gulp.task('xsl', function() {
gulp.src('./example.xml')
.pipe(xslt('./template.xsl', {
someVariable: '"someValue"', // string
anotherVariable: '/foo/bar[@attr]' // xpath that will be evaluated
}))
.pipe(gulp.dest('./build/'));
});
Will produce: ./build/example.xml
<?xml version="1.0" encoding="utf-8"?>
<output attr="someValue">
<bar attr="value">baz</bar>
</output>
FAQs
XSLT transformation plugin for gulp
The npm package @dailyraisin/gulp-xslt receives a total of 0 weekly downloads. As such, @dailyraisin/gulp-xslt popularity was classified as not popular.
We found that @dailyraisin/gulp-xslt 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.