
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
@crossaudio/spectrograph
Advanced tools
This is loosely based on web-audio-components/spectrograph. It allows you to draw a spectrograph to a canvas.

Install in your web-project with npm i @crossaudio/spectrograph. Use it in a synth, like this:
Put this in your HTML:
<canvas id="canvas" width="960" height="300" /><br />
<label><span>frequency:</span> <input type="range" min="0" max="127" id="frequency"></label>
And this in your script:
import { play, Params } from '@crossaudio/core'
const mtof = note => 440 * Math.pow(2, (note - 69) / 12)
const synth = (context, params) => {
const spectrograph = new Spectrograph(context, document.getElementById('canvas'))
spectrograph.start()
const vco = context.createOscillator()
vco.frequency.value = mtof(params.frequency)
vco.start()
params.on('frequency', value => {
vco.frequency.value = mtof(value)
})
vco.connect(spectrograph)
spectrograph.connect(context.destination)
}
// play synth
const params = new Params({
frequency: 48
})
play(synth, params)
// hook up the UI
const freq = document.getElementById('frequency')
freq.onchange = e => { params.frequency = freq.value }
FAQs
A canvas-based spectrograph for crossaudio, on the web
We found that @crossaudio/spectrograph 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.