
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
kitsat
Advanced tools
Kitsat python is a Python CLI and library for communicating with the Kitsat educational satellite manufactured by Arctic Astronautics Ltd.
Use the package manager pip to install kitsat_python
pip install kitsat
To access the USB port at ie. /dev/ttyS0 on Linux, you might have to add your user to dialout group with this command:
sudo usermod -a -G dialout <your_user_name>
And log off and on again.
This package offers a CLI and a Python library for operating the satellite. The cli can be run from a terminal with the command
kitsat_cli
A list of commands for the cli can be found in the directory docs
For using the library, here is a sample script that connects to a satellite on port /dev/ttyACM0, pings the satellite and prints its response. More example scripts can be found in the directory examples
from kitsat import Modem
mod = Modem()
mod.connect('/dev/ttyACM0')
mod.write('ping')
print(mod.read())
mod.disconnect()
FAQs
CLI and python library for communicating with the Kitsat educational satellite
We found that kitsat demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.