
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
.. image:: https://img.shields.io/pypi/v/usb_iss.svg :target: https://pypi.python.org/pypi/usb_iss :alt: PyPi
.. image:: https://api.travis-ci.org/sneakypete81/usb_iss.svg?branch=master :target: https://travis-ci.org/sneakypete81/usb_iss/branches :alt: TravisCI
.. image:: https://readthedocs.org/projects/usb-iss/badge/?version=latest :target: https://usb-iss.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status
Python library for the USB-ISS module.
.. image:: https://www.robot-electronics.co.uk/images/usb-iss-300.png :alt: USB ISS Module
USB-ISS hardware module: https://www.robot-electronics.co.uk/htm/usb_iss_tech.htm
USB-ISS Python library (this project): https://usb-iss.readthedocs.io
Supports all USB-ISS functions (I2C, IO, SPI, Serial)
Cross-platform (Windows, Linux, MacOS, BSD)
Supports Python 2.7 & 3.5+
Comprehensive documentation and unit test suite
.. code-block:: python
from usb_iss import UsbIss, defs
# Configure I2C mode
iss = UsbIss()
iss.open("COM3")
iss.setup_i2c()
# Write and read back some data
# NOTE: I2C methods use 7-bit device addresses (0x00 - 0x7F)
iss.i2c.write(0x62, 0, [0, 1, 2]);
data = iss.i2c.read(0x62, 0, 3)
print(data)
# [0, 1, 2]
.. code-block:: bash
pip install usb-iss
This package was created with Cookiecutter_ and the
audreyr/cookiecutter-pypackage
_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _audreyr/cookiecutter-pypackage
: https://github.com/audreyr/cookiecutter-pypackage
FAQs
Python library for the USB-ISS board.
We found that usb-iss 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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.