
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
[!NOTE] This functionality is available in the standard library starting in Python 3.14
A very small Python library to list the DLLs loaded by the current process.
This is equivalent to the dllist
function in Julia.
Note: This library is tested on macOS, Linux, and Windows. Some platforms which provide the same API as Linux (e.g. FreeBSD) also work.
dllist
is available on PyPI:
pip install dllist
The single function this library provides is dllist()
, which returns a list of the shared
ibraries loaded by the current process.
The first element is usually a representation of the current process itself (often, the empty string),
and the rest are the shared libraries loaded by the process.
import dllist
print(dllist.dllist())
# ['', 'linux-vdso.so.1', '/lib/x86_64-linux-gnu/libpthread.so.0', '/lib/x86_64-linux-gnu/libdl.so.2', ... ]
Note: The library paths are not postprocessed by this library. Depending on your usage, you may need to convert them to absolute paths and/or perform case-normalization (Windows).
FAQs
List the shared libraries loaded by the current process.
We found that dllist 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
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.