Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
wifi-channels
Advanced tools
Get available Wifi channels by country regulations and device capabilities.
Using npm:
$ npm install wifi-channels
To run the tests
$ node test.js
You can use this module to get a list of Wifi channels that are permitted in a country. The data is based on the linux wireless-regdb as of 2022/Aug/12.
const wifiChannels = require('wifi-channels');
console.log(wifiChannels.getDfsRegion('DE'));
// ETSI
console.log(JSON.stringify(wifiChannels.getPermittedChannels('DE', '802.11a')))
// {"channel":"32","lower":"5150","upper":"5170","maxbw":80,"maxantgain":0,"no_outdoor":true,"no_ir":false,"dfs_required":false}
// {"channel":"34","lower":"5150","upper":"5190","maxbw":80,"maxantgain":0,"no_outdoor":true,"no_ir":false,"dfs_required":false}
// {"channel":"36","lower":"5170","upper":"5190","maxbw":80,"maxantgain":0,"no_outdoor":true,"no_ir":false,"dfs_required":false}
// ...
Retrieves the DFS region for a given ISO-2 code. Returns one of the following strings:
Retrieves a list of permitted channels for the ISO-2 code and band given. Band can be:
Returns an array of objects including the following properties:
Member | Description |
---|---|
channel | Channel number |
lower | Lowest frequency in MHz |
upper | Highest frequency in MHz |
maxbw | Maximum bandwidth in MHz |
maxantgain | Maximum antenna gain in db |
no_outdoor | Not allowed outside buildings (true/false) |
dfs_required | DFS capabilities required (true/false) |
no_ir | Do not initiate radiation (true/false) |
Updated json files can be generated using the utils/update.sh
script.
Python 3 is required and the jsonpickle module has to be available in your venv,
install it with python3 -m pip install jsonpickle
.
Then run
./update.sh https://mirrors.edge.kernel.org/pub/software/network/wireless-regdb/wireless-regdb-2021.08.28.tar.gz
This will create a temp directory, extract the data and convert it to the json file.
The MIT License (MIT)
Copyright (c) 2018-2021 Daniel Arnold
FAQs
Get available Wifi channels by country regulations and device capabilities.
We found that wifi-channels 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
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.