
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
angular-barcode-scan
Advanced tools
Servicio Angular para manejar el plugin Cordova: `bardode-scan`
Servicio Angular para manejar el plugin Cordova: bardode-scan
$ ionic cordova plugin add barcode-scan
$ npm install angular-barcode-scan
app.module.ts:
import { BarcodeScan, BarcodeScanModule } from 'angular-barcode-scan';
@NgModule({
declarations: [
...
],
imports: [
...
BarcodeScanModule
],
providers: [
...
BarcodeScan
...
],
})
app.component.html:
<ion-app>
<barcode-host-listener [debug]="true"></barcode-host-listener>
...
</ion-app>
import { Device } from '@awesome-cordova-plugins/device/ngx';
import { BarcodeScan } from 'angular-barcode-scanner';
constructor(
private barcodeScan: BarcodeScan,
private device: Device
) {}
...
await this.barcodeScan.setBarcodeDevice(this.device.model);
...
await this.barcodeScan.setBarcodeDevice('NQuire300');
await this.barcodeScan.setBarcodeDevice(BarcodeScan.Newland);
...
await this.barcodeScan.clearBarcodeDevice();
...
ICameraOptions {
preferFrontCamera?: boolean;
showFlipCameraButton?: boolean;
showTorchButton?: boolean;
torchOn?: boolean; // launch with the torch switched on (if available)
saveHistory?: boolean; // save scan history (default false)
prompt?: string; // Android mensaje inferior
resultDisplayDuration?: number; // display scanned text for X ms. 0 suppresses it entirely, default 1500
formats?: string; // QR_CODE, DATA_MATRIX, UPC_A, UPC_E, EAN_8, EAN_13, CODE_39, CODE_93, CODE_128, CODABAR, ITF, RSS14, PDF_417, RSS_EXPANDED, AZTEC default: all but PDF_417 and RSS_EXPANDED
orientation?: string; // portrait | landscape, default unset so it rotates with the device
disableSuccessBeep?: boolean;
device?: string;
}
this.scannerProvider.scanBarcode(Options?).then((result)=>{
console.log(result);
});
...
this.barcodeScan.subscrbeToScan(this.subscribeKey,
async (value) => {
this.callbackFunction(value.result);
}, (err) => {
console.log(err);
});
...
this.barcodeScan.unSubscrbeToScan(this.subscribeKey);
FAQs
Servicio Angular para manejar el plugin Cordova: `bardode-scan`
The npm package angular-barcode-scan receives a total of 5 weekly downloads. As such, angular-barcode-scan popularity was classified as not popular.
We found that angular-barcode-scan demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.