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.
digitalbacon
Advanced tools
Create 3D websites easily that run on AR, VR, Desktop, and Mobile devices with Digital Bacon. No coding required, but supports an API to create plugins for advanced customizations
Go to the Digital Bacon Editor to create a 3D website and then save your project zip file. You can then host your project using the below html snippet (or just fork this repo and replace my-project.zip with your project file)
<html>
<head>
<script type="importmap">
{
"imports": {
"DigitalBacon": "https://cdn.jsdelivr.net/npm/digitalbacon@latest/build/DigitalBacon.min.js",
"three": "https://cdn.jsdelivr.net/npm/three@0.164.1/build/three.module.js"
}
}
</script>
</head>
<body>
<div id="my-container-id"></div>
<script type="module">
import { setup } from 'DigitalBacon';
let params = { projectFilePath: './my-project.zip'};
setup("my-container-id", params);
</script>
</body>
</html>
To enable multi-user sessions on your website, you'll need an authUrl and socketUrl from a third party service like My Digital Bacon and add those to your setup parameters like so
let params = {
projectFilePath: './my-project.zip',
authUrl: '{AUTH_URL}',
socketUrl: '{WEBSOCKET_URL}',
};
setup("my-container-id", params);
A special thanks to the following people for taking time to contribute to this project
prajwalbandak 🚇 | Lauritta 🚇 | Joel Jose ⚠️ | Rasesh Kumar Rout 💻 | kaigidwani 📖 |
FAQs
Content management system for 3D websites
The npm package digitalbacon receives a total of 8 weekly downloads. As such, digitalbacon popularity was classified as not popular.
We found that digitalbacon demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.