
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).
Meadow.Foundation.Sensors.Camera.UsefulSensors.TinyCodeReader
Advanced tools
Useful Sensor's Tiny Code Reader I2C optical QR code reader
Useful Sensor's Tiny Code Reader I2C optical QR code reader
The UsefulSensorsTinyCodeReader library is included in the Meadow.Foundation.Sensors.Camera.UsefulSensors.TinyCodeReader nuget package and is designed for the Wilderness Labs Meadow .NET IoT platform.
This driver is part of the Meadow.Foundation peripherals library, an open-source repository of drivers and libraries that streamline and simplify adding hardware to your C# .NET Meadow IoT applications.
For more information on developing for Meadow, visit developer.wildernesslabs.co.
To view all Wilderness Labs open-source projects, including samples, visit github.com/wildernesslabs.
You can install the library from within Visual studio using the the NuGet Package Manager or from the command line using the .NET CLI:
dotnet add package Meadow.Foundation.Sensors.Camera.UsefulSensors.TinyCodeReader
TinyCodeReader tinyCodeReader;
public override Task Initialize()
{
Resolver.Log.Info("Initialize...");
tinyCodeReader = new TinyCodeReader(Device.CreateI2cBus());
return Task.CompletedTask;
}
public override Task Run()
{
//one time read
var qrCode = tinyCodeReader.ReadCode();
if (qrCode != null)
{
Resolver.Log.Info($"QR Code: {qrCode}");
}
else
{
Resolver.Log.Info("No QR Code Found");
}
//continuous read
tinyCodeReader.CodeRead += TinyCodeReader_CodeRead;
tinyCodeReader.StartUpdating(TimeSpan.FromSeconds(1));
return Task.CompletedTask;
}
private void TinyCodeReader_CodeRead(object sender, string e)
{
Resolver.Log.Info($"QRCode message: {e} ({DateTime.Now})");
}
develop
branchIf you have questions or need assistance, please join the Wilderness Labs community on Slack.
Meadow is a complete, IoT platform with defense-grade security that runs full .NET applications on embeddable microcontrollers and Linux single-board computers including Raspberry Pi and NVIDIA Jetson.
Use the full .NET platform and tooling such as Visual Studio and plug-and-play hardware drivers to painlessly build IoT solutions.
Utilize native support for WiFi, Ethernet, and Cellular connectivity to send sensor data to the Cloud and remotely control your peripherals.
Instantly deploy and manage your fleet in the cloud for OtA, health-monitoring, logs, command + control, and enterprise backend integrations.
FAQs
Useful Sensor's Tiny Code Reader I2C optical QR code reader
We found that meadow.foundation.sensors.camera.usefulsensors.tinycodereader demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.