
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
An Apple HomeKit Accessory Protocol kit and server for easily wrapping your accessories in NodeJS for both Type- and JavaScript. 📡🏚
It will look something like
import { Bridge, Light, Switch } from "hapkit";
export default class Service extends Bridge {
private kitchenLight: Light({
uid: 1,
name: "Kitchen",
actions: { // ILightActions
on: "http://192.0.0.2/kitchen/on", // IAction URL or function
off: "http://192.0.0.2/kitchen/off"
}
});
private waterCooker: Switch({
uid: 2,
name: "Water Cooker",
actions: {
on: "http://192.0.0.2/cooker/on",
off: "http://192.0.0.2/cooker/off"
}
)};
constructor() {
super(
this.kitchenLight,
this.waterCooker
);
}
}
Thats all, now your light will show up in HomeKit. You can even toggle it using your own api!
http://192.0.0.1:92000/accessories
[
{
"uid": 1,
"name": "Kitchen",
"type": "light",
"url": "http://192.0.0.1:92000/accessories/1",
"actions": [
{
"name": "on",
"description": "Powers the light on",
"url": "http://192.0.0.1:92000/accessories/1/on"
},{
"name": "off",
"description": "Powers the light off",
"url": "http://192.0.0.1:92000/accessories/1/off"
}
]
}
...
]
FAQs
An Apple HomeKit Accessory Protocol kit and server for easily wrapping your accessories in NodeJS for both Type- and JavaScript. 📡🏚
The npm package hapkit receives a total of 3 weekly downloads. As such, hapkit popularity was classified as not popular.
We found that hapkit 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.