Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
.. image:: https://travis-ci.com/alexferl/distconfig.svg?branch=master :target: https://travis-ci.com/alexferl/distconfig
.. image:: https://readthedocs.org/projects/distconfig/badge/?version=latest :target: https://readthedocs.org/projects/distconfig/?badge=latest :alt: Documentation Status
This is a fork of distconfig <https://github.com/deliveryhero/distconfig>
_ removing Python 2.7 support as well as six
and ujson dependencies.
Library to manage distributed configuration using either ZooKeeper <https://zookeeper.apache.org/>
_ or
Etcd <https://github.com/coreos/etcd>
_ or Consul <http://www.consul.io/>
_.
When you have to manage configuration of a given services that are distributed across nodes, you may want to consider using either one of the distributed configuration managers e.g. zookeeper, etcd, consul ..., this library goal is to give developers an easy access to configuration stored in the previous backends.
To use ZooKeeper as backend you should install distconfig3
using ::
$ pip install distconfig3[zookeeper]
with etcd::
$ pip install distconfig3[etcd]
with consul::
$ pip install distconfig3[consul]
Example using zookeeper as a backend ::
from kazoo import client
from distconfig import Proxy
client = client.KazooClient()
# The user must call ``KazooClient.start()`` before using this particular
# backend
client.start()
proxy = Proxy.configure(
'distconfig.backends.zookeeper.ZooKeeperBackend',
client=client,
)
# config is a read only mapping-like object.
config = proxy.get_config('/distconfig/service_name/config')
print(config['key'])
# Getting nested values works by supplying key seperated by '/' char.
print(config['key/inner'])
# You can assert key value type by using typed get function e.g.
# get_int, get_float, get_unicode, get_bytes ... .
print(config.get_int('key/inner/int_key'))
# Getting a inner config.
print(config.get_config('key/inner/dict_key'))
Start by installing dependencies ::
$ pip install -r requirements/dev.txt
To run unit test use tox ::
$ tox
To run integration test, we recommend you to install docker <https://www.docker.com/>
_ and then run ::
$ ./run-tests.sh
The above script will setup docker container for each of the backend and run the integration tests on them.
FAQs
Library to manage configuration using Zookeeper, Etcd, Consul
We found that distconfig3 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.