
Security Fundamentals
Turtles, Clams, and Cyber Threat Actors: Shell Usage
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
@jcoreio/i2c
Advanced tools
Native bindings for i2c-dev. Plays well with Raspberry Pi and BeagleBone.
Bindings for i2c-dev. Plays well with Raspberry Pi and Beaglebone.
Based on kelly/node-i2c, converted from CoffeeScript to TypeScript and from callbacks to promises, but with only a subset of the original project's methods.
$ yarn add @jcoreio/i2c
import I2C from '@jcoreio/i2c'
const i2c = new I2C({ device: '/dev/i2c-1', address: 0x50 })
const OFFSET = 16
// In an async function
const writeData = Buffer.alloc(8)
try {
await i2c.write(OFFSET, writeData)
// wait 1 ms before reading back
await new Promise(resolve => setTimeout(resolve, 1))
// read back
const readData = await i2c.read(OFFSET, 8)
} finally {
i2c.close()
}
$ sudo vi /etc/modules
Add these two lines
i2c-bcm2708
i2c-dev
$ sudo vi /etc/modprobe.d/raspi-blacklist.conf
Comment out blacklist i2c-bcm2708
#blacklist i2c-bcm2708
Load kernel module
$ sudo modprobe i2c-bcm2708
$ sudo modprobe i2c-dev
Make device writable
sudo chmod o+rw /dev/i2c*
Install gcc 4.8 (required for Nan)
sudo apt-get install gcc-4.8 g++-4.8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.6
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 40 --slave /usr/bin/g++ g++ /usr/bin/g++-4.8
sudo update-alternatives --config gcc
Set correct device for version
new I2C({ address, device: '/dev/i2c-0' }) // rev 1
new I2C({ address, device: '/dev/i2c-1' }) // rev 2
$ ntpdate -b -s -u pool.ntp.org
$ opkg update
$ opkg install python-compile
$ opkg install python-modules
$ opkg install python-misc
$ npm config set strict-ssl false
$ npm install i2c
npm install i2c@0.1.8
Thanks to @alphacharlie for Nan rewrite, and @J-Cat for Node 14 updates.
FAQs
Native bindings for i2c-dev. Plays well with Raspberry Pi and BeagleBone.
The npm package @jcoreio/i2c receives a total of 2 weekly downloads. As such, @jcoreio/i2c popularity was classified as not popular.
We found that @jcoreio/i2c demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 6 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.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.
Security News
At VulnCon 2025, NIST scrapped its NVD consortium plans, admitted it can't keep up with CVEs, and outlined automation efforts amid a mounting backlog.
Product
We redesigned our GitHub PR comments to deliver clear, actionable security insights without adding noise to your workflow.