
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
@ternion/t3d
Advanced tools
If you're using MQTT over TLS/WSS connections with custom or self-signed certificates, you'll need to install the CA certificate to your operating system's trust store. This allows browsers and applications (including VS Code webviews) to trust certificates signed by that CA.
If you prefer to install the CA certificate manually without using the CLI scripts:
Option 1: Certificate Manager (GUI)
Win + R, type certmgr.msc and press EnterTrusted Root Certification Authorities → CertificatesAll Tasks → Import.pem or .crt)Next → FinishOption 2: PowerShell (as Administrator)
certutil -addstore -f Root "path\to\ca-chain.pem"
Option 1: Keychain Access (GUI)
Option 2: Command Line
sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain /path/to/ca-chain.pem
# Copy certificate to system certificates directory
sudo cp ca-chain.pem /usr/local/share/ca-certificates/
# Update certificate store
sudo update-ca-certificates
# Restart browsers/VS Code
For other Linux distributions, the certificate location may vary. Common locations:
/etc/pki/ca-trust/source/anchors//etc/ca-certificates/trust-source/anchors/Prerequisites:
npm install -g @ternion/t3d or npm link).pem or .crt format)Install CA Certificate:
t3d ca install --cert <path-to-certificate-file>
Example:
t3d ca install --cert src/mqtt-node/data/ca-chain.pem
Uninstall CA Certificate (when no longer needed):
t3d ca uninstall --cert <path-to-certificate-file>
Note: You can also pipe certificate content via stdin or use --cert-content "<PEM>" for inline PEM content. See T3D CLI User Manual for more options.
/Library/Keychains/System.keychain/usr/local/share/ca-certificates/Browsers and VS Code webviews use the operating system's certificate store to validate SSL/TLS certificates. Installing the CA at the OS level ensures:
For comprehensive information including:
See: CA Certificate Installation Guide
See the main documentation:
FAQs
T3D - A TypeScript 3D Engine Library for Digital Twins
We found that @ternion/t3d 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.