
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
DTMF decoder based on multimon and SoX.
This module requires installed multimon, Sox. For decodign mp3 files/streams, you can install libsox-fmt-mp3
For Ubuntu, Debian and Debian-based dist:
apt install multimon sox libsox-fmt-mp3
See demo.js in demo folder
Supports wav, ogg and raw from scratch. MP3 supported with libsox-fmt-mp3
const LDTMF = require('linux-dtmf');
const dtmf = new LDTMF();
let decodeResult = await dtmf.decodeUri('1234567890.wav', 'wav', true);
console.log('Decode result', decodeResult);
const LDTMF = require('linux-dtmf');
const dtmf = new LDTMF();
let dataBuffer = fs.readFileSync('1234567890.wav');
let decodeResult = await dtmf.decodeBuffer(dataBuffer, 'wav', true);
console.log('Decode result', decodeResult);
const LDTMF = require('linux-dtmf');
const dtmf = new LDTMF();
let dataBuffer = fs.readFileSync('1234567890.wav');
dtmf.on('data', function (data) {
console.log('Decoded data:', data);
});
dtmf.on('end', function () {
console.log('Decode ended')
});
//Decode stream
let buffer = await dtmf.createDecodeBuffer('wav');
buffer.write(dataBuffer);
LDTMF is an event based module.
Decoded data
Decoder stopped
FAQs
DTFM decoder based on sox and multimon
We found that linux-dtmf 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.