
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
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.
The AsliLogin Web SDK enables you to add FIDO2 certified multi-factor authentication to your web-based application all the while having full control over the user experience with no redirection to pages outside your application.
Check out the AsliLogin SDK for a simplified integration.
npm i aslilogin --save
import { registration } from "aslilogin/sdk";
const handleSignup = async (event) => {
event.preventDefault();
const email = "youremail@gmail.com";
let registerInitial = new registration.AsliLoginRegistration({
token: "token received by ASLIRI",
});
const registerProcess = await registerInitial.registerWithPasswordLess(email);
// you can show up response from process
console.log({ registerProcess });
// your code for handle
// example
if (registerProcess.status === "success") {
//
console.log("verify status", registerProcess.verified);
}
};
<button onClick={(event) => handleSignUp(event)} type="button">Sign Up</button>
registerProcess{
message: "message",
status: "success" | "error",
verified: boolean
}
import { authenticate } from "aslilogin/sdk";
const handleSignin = async (event) => {
event.preventDefault();
const email = "youremail@gmail.com";
let loginInitial = new authenticate.AsliLoginAuthentication({
token: "token received by ASLIRI",
});
const loginProcess = await loginInitial.loginWithPasswordLess(email);
// you can show up response from process
console.log({ loginProcess });
// your code for handle
// example
if (loginProcess.status === "success") {
//
}
};
<button onClick={(event) => handleSignin(event)} type="button">Sign Up</button>
loginProcess{
message: "message",
status: "success" | "error",
verified: boolean
}
FAQs
AsliLogin Web SDK
We found that aslilogin 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 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.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.