Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
node-dash-button
Advanced tools
a module for integrating amazon dash button presses into a node project
Place it. Hack it. Press it. Get it.
This module was inspired by this fantastic article by Edward Bensen.
It is a simple library that will allow you to utilize a dash button to emit an event. I am using the same strategy of watching for dash generated ARP requests as the article above.
The following should work for ubuntu, the main thing for any os is getting the libpcap dependancy.
# dependancy on libpcap for reading packets
$ sudo apt-get install libpcap-dev
$ npm install node-dash-button
Follow Amazon's instructions to configure your button to send messages when you push them but not actually order anything. When you get a Dash button, Amazon gives you a list of setup instructions to get going. Just follow this list of instructions, but don’t complete the final step (#3 I think) Do not select a product, just exit the app.
To find a dash on your network, run the following from the node-dash-button directory in node_modules:
# you may need to use sudo due to libpcap running in permiscuous mode
$ cd node_modules/node-dash-button
$ node bin/findbutton
It will watch for new arp requests on your network. There may be several arp requests, so press it a few times to make sure. Copy the hardware address as shown below
Note: If your computer has multiple active network interfaces, findbutton
will use the first one listed. If you need to overwrite this setting, pass your preferred interface
as the first argument, such as node bin/findbutton eth6
.
For a single dash
//warning this may trigger multiple times for one press
//...usually triggers twice based on testing for each press
var dash_button = require('node-dash-button');
var dash = dash_button("8f:3f:20:33:54:44"); //address from step above
dash.on("detected", function (){
console.log("omg found");
});
For multiple dashes:
var dash_button = require('node-dash-button');
var dash = dash_button(["8f:3f:20:33:54:44","2e:3f:20:33:54:22"]); //address from step above
dash.on("detected", function (dash_id){
if (dash_id === "8f:3f:20:33:54:44"){
console.log("omg found");
} else if (dash_id === "2e:3f:20:33:54:22"){
console.log("found the other!");
}
});
Binding To Specific Interface:
By default, the dash button is bound to the first device with an address. To bind the button to a specific interface, such as eth6
, pass the name of the interface as the 2nd argument to the invocation method.
var dash_button = require('node-dash-button');
var dash = dash_button("8f:3f:20:33:54:44", "eth6"); //address from step above
dash.on("detected", function (){
console.log("omg found - on eth6!");
});
Due to the use of pcap permiscuous monitoring this was difficult to test in CI environments, so I ended up making two testing suites. One uses the live pcap library and does actual packet capturing/arp injections. The other uses mockery to fake pcap packets. I will have an upcoming blog post on how I did this, because it was interesting.
To run a live test of the code (requiring root due to permiscuous access please run).
sudo npm run-script livetest
This will actually inject ARP packets to the network to run the tests to ensure detection.
I wanted to use various CI tools that would not allow the pcap functions to work, so I ended up mocking their functions. To run the mock tests use:
npm test
I collected a few examples I found on github of how people are using this module, some projects are more mature than others
Accepting pull requests!
The MIT License (MIT)
Copyright (c) 2016 Alex Hortin
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
a module for integrating amazon dash button presses into a node project
The npm package node-dash-button receives a total of 16 weekly downloads. As such, node-dash-button popularity was classified as not popular.
We found that node-dash-button 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.