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.
pgpasslib is a library for retrieving passwords from a PostgreSQL password
file, either from a location specified in the PGPASSFILE
environment
variable or in the .pgpass
file in the current user's home directory.
|Version| |Downloads| |Status| |Coverage| |CodeClimate|
pgpasslib may be installed via the Python package index with the tool of your choice. I prefer pip:
.. code:: bash
pip install pgpasslib
https://pgpasslib.readthedocs.org
There are no requirements outside of the Python standard library.
The following example will attempt to get the password for PostgreSQL running
on localhost:5432
to the postgres
database as the postgres
user.
.. code:: python
import pgpasslib
password = pgpasslib.getpass('localhost', 5432, 'postgres', 'postgres')
if not password:
raise ValueError('Did not find a password in the .pgpass file')
Available at https://pgpasslib.readthedocs.org
.. |Version| image:: https://img.shields.io/pypi/v/pgpasslib.svg? :target: https://pypi.python.org/pypi/pgpasslib
.. |Status| image:: https://img.shields.io/travis/gmr/pgpasslib.svg? :target: https://travis-ci.org/gmr/pgpasslib
.. |Coverage| image:: https://img.shields.io/codecov/c/github/gmr/pgpasslib.svg? :target: https://codecov.io/github/gmr/pgpasslib?branch=master
.. |Downloads| image:: https://img.shields.io/pypi/dm/pgpasslib.svg? :target: https://pypi.python.org/pypi/pgpasslib
.. |CodeClimate| image:: https://codeclimate.com/github/gmr/pgpasslib/badges/gpa.svg :target: https://codeclimate.com/github/gmr/pgpasslib :alt: Code Climate
FAQs
Library for getting passwords from PostgreSQL password files
We found that pgpasslib 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
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.