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.
Kanata is a very simple dependency injection framework used for decoupling the services of your Python application's services from their dependencies. This may help with maintainability, testability and readability.
Currently, the following lifetime scopes are supported:
The project currently targets Python version 3.11 or higher. Compatibility with older versions may be possible but isn't tested.
First of all, make sure that you install the library in your project. Using a default Python installation, the following will work:
# Unix/MacOS
python3 -m pip install kanata
# Windows
py -m pip install kanata
Using the library is as simple as building a catalog of our injectables and resolving a root injectable:
from kanata import InjectableCatalog, LifetimeScope, find_injectables
# Find all types from a specific module that have been marked as injectables:
registrations = find_injectables("my.module")
# Construct a new catalog for these types:
catalog = InjectableCatalog(registrations)
# Create a scope that manages the resolved instances:
scope = LifetimeScope(catalog)
# And finally, resolve the injectable type you need:
instance = scope.resolve(MyClass)
For the above code to work, you need to mark the types you need as injectables. You can currently achieve this by using the @injectable(...)
decorator as follows:
from kanata.decorators import injectable
# Typically, you'll want to create an interface to be used as the contract:
class IMyInterface:
pass
# And then register your type as an injectable with its contract:
@injectable(IMyInterface):
class MyClass(IMyInterface):
...
As constructor (or __init__(...)
in Python) injection is used, you need to define the required dependencies in this method:
from kanata.decorators import injectable
@injectable(IMyInterface):
class MyClass(IMyInterface):
# Type hints are required for the framework to identify the dependencies.
# Where multiple dependencies are allowed, you can use a Tuple to specify it.
def __init__(
self,
dependency1: IDependency1,
dependency2: IDependency2,
multiple_dependencies: tuple[IDependency3, ...]):
...
The framework will then take care of resolving these dependencies.
Below are some of the dependency resolution rules:
For the ability to customize logging, the structlog library is used instead of the built-in logging module of Python. Please, refer to the project's documentation for details.
In case you would like to see more samples, clone the repository and run one of the bundled samples.
First, make sure that Kanata is installed, preferably in editable mode (while standing in the root directory):
# Unix/MacOS
python3 -m pip install -e .
# Windows
py -m pip install -e .
Then, while standing in the root directory, execute the samples.py
script and follow the on-screen instructions:
# Unix/MacOS
python3 ./samples.py
# Windows
py .\samples.py
The samples are full of comments to better explain what is happening.
Contributions to the project are welcome in the form of creating an issue or forking the repository and creating a pull request.
FAQs
A simple dependency injection framework for Python 3 applications.
We found that kanata 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.