
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
@vgip/vonage-dialer-sdk
Advanced tools
npm install @vgip/vonage-dialer-sdk
https://plnkr.co/edit/TGj0HCbDU6yapgfL
const VonageDialer = require('@vgip/vonage-dialer-sdk');
VonageDialer.init({ debug: true }, (dialer) => { // (optional)
dialer.setOnDialerEvent((event) => {
switch (event.type) {
case 'CALL_START': {
break;
}
case 'CALL_ANSWER': {
break;
}
case 'CALL_END': {
console.log(event.data); // VGIP Call Detail Record
break;
}
default: {
this.debugLog('Unhandled event', event);
}
}
});
});
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="vonage.dialer.sdk.js"></script>
</head>
<body>
...
</body>
</html>
By default, the script creates a Vonage Dot button and inserts it inside the host page. You can drag and reposition the Dot button everywhere on the page and it will remember its position on reload. The dialer becomes shown when a phone call is started or when the Dot button is clicked.
In order to place the dialer into a designated container on the page, create an HTML element with CSS class .vonage-dialer-container
;
<div class='vonage-dialer-container' style='width: 280px; height: 460px; position: relative;'></div>
You can extend the dialer with additional behavior, implement contacts autocomplete and add extra settings. Find out how in the Dialer SDK documentation.
FAQs
Vonage CTI Dialer SDK
The npm package @vgip/vonage-dialer-sdk receives a total of 404 weekly downloads. As such, @vgip/vonage-dialer-sdk popularity was classified as not popular.
We found that @vgip/vonage-dialer-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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 npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.