
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
@anycade/sdk
Advanced tools
Web SDK for Anycade Games
# npm
npm i @anycade/sdk
# yarn
yarn add @anycade/sdk
# pnpm
pnpm add @anycade/sdk
Warning
The script must be inserted before your main game script!
<script src="https://unpkg.com/@anycade/sdk/dist/browser/index.min.js"></script>
import { SDK } from '@anycade/sdk';
const sdk = new SDK({
gameId: '123456'
});
Using the CDN version, the
SDKclass is accessible throughAnycade.
const sdk = new Anycade.SDK({
gameId: '123456'
});
debug - Debug modegameId - Game IDinitializeSDK initialization with the platform.
const sdk = new SDK({
gameId: '123456',
});
try {
await sdk.initialize();
// Ok
} catch (error) {
// Error
}
purchaseShow the payment window.
try {
const result = await sdk.payments.purchase({
meta: {
// Custom fields to retrieve
foo: 'bar',
},
productId: '123456', // Id of the product from the platform
});
// Handle the result.
switch (result.status) {
case 'cancel':
// Cancel the payment process.
case 'fail':
// Failed to pay.
case 'success':
// Paid successfully.
}
// Access custom fields.
result.meta;
} catch (error) {
// Error
}
FAQs
Anycade SDK
We found that @anycade/sdk 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.