Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Substrate is a tool that allows you to automate the process of deploying visualization tools to different computing environments.
Any computing environment capable of running Docker Swarm is a valid deployment target.
This tool relies upon Docker Swarm. In order for it to work, the following assumptions are made of each compute node (for AWS deployments, these requirements are handled automatically):
~/.ssh
.To install run
pip install seelabutk-substrate
then launch a visualization tool via a CLI using
substrate 'tool_name' start
substrate 'tool_name' stop
or via Python using
from substrate import Substrate
stack = Substrate('tool_name')
stack.start()
stack.stop()
Valid tool names:
Substrate is configured using substrate.config.yaml
. The tool will look for this file starting in your current working directory then look for it in parent folders. You can also provide a path with
substrate tapestry start -f /path/to/substrate.config.yaml
or
stack = Substrate('tool_name', {}, path='path/to/substrate.config.yaml')
You may also specify the config directly via JSON/a dictionary with
substrate tapestry start -c "{ config here... }"
or
stack = Substrate('tool_name', config)
The options for the configuration file can be found here.
Each tool has static files that are needed to run it. Defaults are provided, but if needed or desired they can be modified. Here are links to get the default files for Tapestry and Braid.
For more information on configuring each tool, please refer to each tools documentation:
To setup the dev environment, please install Pipenv. Once installed, run the following commands to set up the development environment:
pipenv --python /path/to/your/python3.10
pipenv sync -d
pipenv shell
To upload to prepare a new release, run the following commands:
python -m build
python -m twine upload dist/*
FAQs
Automatically deploys visualization services via Docker Swarm
We found that seelabutk-substrate 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.