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.
eddystone-beacon
Advanced tools
Create an Eddystone Beacon using Node.js
Eddystone-URL beacons can be used with the Physical Web.
See bleno prerequisites.
OS X 10.10 or above, with Bluetooth 4.0 Hardware.
You need to run with sudo
or as root
. See bleno - Running on Linux for more info.
Have an older machine or Raspberry Pi? Add a Bluetooth 4.0 USB Adapter.
See bleno Windows prerequisites.
npm install eddystone-beacon
var eddystoneBeacon = require('eddystone-beacon');
var options = {
name: 'Beacon', // set device name when advertising (Linux only)
txPowerLevel: -22, // override TX Power Level, default value is -21,
tlmCount: 2, // 2 TLM frames
tlmPeriod: 10 // every 10 advertisements
};
Note: an advertising interval of 100ms is used.
var url = 'http://example.com';
eddystoneBeacon.advertiseUrl(url, [options]);
If your encoded URL is too long, try a URL shortener like goo.gl or bit.ly.
var namespaceId = '00010203040506070809';
var instanceId = 'aabbccddeeff';
eddystoneBeacon.advertiseUid(namespaceId, instanceId, [options]);
Use with interleaved TLM mode, see options above.
var batteryVoltage = 500; // between 500 and 10,000 mV
eddystoneBeacon.setBatteryVoltage(batteryVoltage);
var temperature = 22.0; // between -128.0 and 128.0
eddystoneBeacon.setTemperature(temperature);
npm install
npm test
FAQs
Create an Eddystone Beacon using Node.js
The npm package eddystone-beacon receives a total of 8 weekly downloads. As such, eddystone-beacon popularity was classified as not popular.
We found that eddystone-beacon demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.