
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@infernus/cef
Advanced tools
A wrapper of the popular samp-cef plugin for samp-node.
You must use an existing polyfill or compile the corresponding GameMode based on it before you can use it.
pnpm add @infernus/core @infernus/cef
Please refer to the documentation of the samp-cef plugin.
#include <open.mp>
#include <samp-node>
#include <streamer>
#include <cef>
#include <polyfill/i18n>
#include <polyfill/cef>
forward OnLogin(player_id, const password[]);
public OnLogin(player_id, const password[]) {
// transfer to our samp.on
return SAMPNode_CallEvent("OnPlayerCefLogin", player_id, password)
}
import { defineEvent } from "@infernus/core";
import { Cef, CefEvent } from "@infernus/cef";
CefEvent.onInitialize(({ player, success, next }) => {
if (!player) return next();
if (success) {
new Cef({
player,
browserId: 1,
url: "http://your-hosting.com",
hidden: false,
focused: false,
});
} else {
player.sendClientMessage(
-1,
"Ahh to bad you cannot see our new cool interface ...",
);
}
return next();
});
CefEvent.onBrowserCreated(({ cef, statusCode }) => {
if (cef.browserId === 1) {
if (statusCode !== 200) {
// fallback to dialogs ...
return;
}
Cef.subscribe("loginpage:login", "OnLogin");
}
});
const [onPlayerCefLogin] = defineEvent({
name: "OnPlayerCefLogin",
identifier: "is",
beforeEach(playerId: number, password: string) {
return { playerId, password };
},
});
onPlayerCefLogin(({ playerId, password, next }) => {
// get a user password and compare it with a passed string
const success = comparePlayerPassword(playerId, password);
if (success) {
// send a response status to the player
// Cef.emitEvent(playerId, "someevent", 0, 25.51, "hellow!");
// you no longer need CEFINT, CEFFLOAT, CEFSTR !!!
Cef.emitEvent(playerId, "loginpage:response", 1);
// your code when user is logged in
OnSuccessLogin(playerId);
}
return next();
});
FAQs
A wrapper of the popular samp-cef plugin for samp-node.
We found that @infernus/cef 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.