
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Data-driven declarative game engine for HTML5
Note: this is a new project. But keep watching. I'm coding this intensively.
Online demo: https://hex13.github.io/apps/clone2d/
First you must put <canvas id="engine"></canvas>
in your HTML. Then:
const engine = require('clone2d')();
engine.createTypesFromImages([
'../img/coin.png', '../img/car.png', '../img/component.png', '../img/cat.png',
]);
engine.run(() => {
engine.world.createObject({
type: 'coin',
x: 400,
y: 500
});
engine.world.createObject({
type: 'coin',
x: 400,
y: 200,
keyframes: [
{t: 0, opacity: 0, scale: 1},
{t: 2000, opacity: 1, scale: 2},
{t: 4000, opacity: 0.5, scale: 1.3},
]
});
engine.world.createObject({
type: 'cat',
x: 300,
y: 300,
onMouseOver() {
this.opacity = 0.3
this.scale = 2;
},
onMouseOut() {
this.opacity = 1;
this.scale = 1;
}
});
});
FAQs
Data-driven declarative game engine for HTML5
The npm package clone2d receives a total of 0 weekly downloads. As such, clone2d popularity was classified as not popular.
We found that clone2d demonstrated a not healthy version release cadence and project activity because the last version was released 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.