
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy 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 6 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.