
Research
/Security News
Contagious Interview Campaign Escalates With 67 Malicious npm Packages and New Malware Loader
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
PyMQI is a production-ready, open-source Python extension for IBM MQ (formerly known as WebSphere MQ and MQSeries).
For 20+ years, the library has been used by thousands of companies around the world with their queue managers running on Linux, Windows, UNIX and z/OS.
To put a message on a queue:
.. code-block:: python
import pymqi
queue_manager = pymqi.connect('QM.1', 'SVRCONN.CHANNEL.1', '192.168.1.121(1434)')
q = pymqi.Queue(queue_manager, 'TESTQ.1')
q.put('Hello from Python!')
To read the message back from the queue:
.. code-block:: python
import pymqi
queue_manager = pymqi.connect('QM.1', 'SVRCONN.CHANNEL.1', '192.168.1.121(1434)')
q = pymqi.Queue(queue_manager, 'TESTQ.1')
msg = q.get()
print('Here is the message:', msg)
PyMQI is a low-level library that requires one to know IBM MQ APIs well.
It serves, however, as the basis for
IBM MQ
support
in
Zato <https://zato.io>
_,
which is an enterprise
API platform and backend application server in Python that lets one connect to many technologies
with little or no programming.
This includes IBM MQ queue managers as well as the ability to seamlessly integrate with Java JMS systems.
.. image:: https://zato.io/en/docs/3.2/gfx/api/screenshots/conn1.png
.. image:: https://zato.io/en/docs/3.2/gfx/api/screenshots/mq.png
Visit the documentation <https://zato.io/en/docs/3.2/pymqi/index.html?gh>
_ for more information and usage examples.
FAQs
Python IBM MQI Extension for IBM MQ (formerly WebSphere MQ and MQSeries).
We found that pymqi 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
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.