Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cordova-plugin-epson-spectrum
Advanced tools
A Cordova Honeywell Scanner Plugin for the buil-in barcodes scanner.
Cordova: cordova plugin add cordova-plugin-honeywell-spectrum-scanner
Honeywell ScanPal EDA50 - Android 4.4 and 7
Honeywell CT60 - Android 8.1.0
Call .init
to capture scans using the device's physical buttons. Call .scan
within your application to enable a "software" triggerd scan. You can disable the capturing by calling .release
and enable it back by calling .claim
followed by .listen
method. You can also simulate a softare button to enable the reader behaving in the same way as the hardware scan button(s).
TIP: In Ionic, in order to access the window
property, you may need to add window: any = window
just above your constructor.
window.plugins.honeywell.init(function(result) {
console.log('Barcode scanned: ' + result.data);
console.log('Code: ' + result.code);
console.log('Timestamp: ' + result.timestamp);
console.log('Charset: ' + result.charset);
console.log('Aim ID: ' + result.aimId);
}, function (error) => {
console.log('Error occured: ' + error);
});
function disable() {
window.plugins.honeywell.stop();
}
async function enable() {
await window.plugins.honeywell.start();
window.plugins.honeywell.init(function(data) {
console.log('Barcode scanned: ' + result.data);
console.log('Code: ' + result.code);
console.log('Timestamp: ' + result.timestamp);
console.log('Charset: ' + result.charset);
console.log('Aim ID: ' + result.aimId);
}, function (error) => {
console.log('Error occured: ' + error);
});
}
Ionic JS/TS methods:
scanPressed () {
this.window.plugins.honeywell.softwareTriggerStart(function(data) {
console.log('Software scan: ' + data);
}, function(error) {
console.log('Error occured: ' + error);
});
}
scanReleased () {
this.window.plugins.honeywell.softwareTriggerStop();
}
...and the HTML:
<button (touchstart)="scanPressed()" (touchend)="scanReleased()">SCAN</button>
FAQs
Cordova Epson Plugin.
The npm package cordova-plugin-epson-spectrum receives a total of 1 weekly downloads. As such, cordova-plugin-epson-spectrum popularity was classified as not popular.
We found that cordova-plugin-epson-spectrum 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.