
Product
Introducing Module Reachability: Focus on the Vulnerabilities That Matter
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
The following package is for the luarmor.net site.
Im too lazy to make the docs for it rn, so use this as an example for commonjs
const Luarmor = require("luarmor");
const luarmor = new Luarmor(
process.env.LUARMOR_API_KEY
);
const main = async () => {
const AddUser = await luarmor.addKey(process.env.LUARMOR_PROJECT_ID, {
discord_id: "234215145432",
});
if (AddUser && AddUser.success) {
console.log(`Whitelisted!
Key is:
${AddUser.user_key}`); // successfully whitelisted
} else {
console.error(AddUser.message);
}
const resethwid = await luarmor.resetHWID(process.env.LUARMOR_PROJECT_ID, {
user_key: AddUser.user_key,
});
if (resethwid && resethwid.success) {
console.log("HWID reset!");
} else {
console.error(resethwid.message);
}
const linkdsc = await luarmor.linkDiscord(process.env.LUARMOR_PROJECT_ID, {
user_key: AddUser.user_key,
discord_id: "234215145432",
});
if (linkdsc && linkdsc.success) {
console.log("Discord linked!");
} else {
console.error(linkdsc.message);
}
const listKeys = await luarmor.getKeys();
console.log(listKeys);
const DeleteUser = await luarmor.deleteKey(process.env.LUARMOR_PROJECT_ID, {
user_key: AddUser.user_key,
});
if (DeleteUser && DeleteUser.success) {
console.log("User deleted!");
} else {
console.error(DeleteUser.message);
}
const info = await luarmor.getInformation();
console.log(info);
};
Made by WolfieBoy
FAQs
Wrapper made for luarmor
The npm package luarmor receives a total of 33 weekly downloads. As such, luarmor popularity was classified as not popular.
We found that luarmor 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.
Product
Module Reachability filters out unreachable CVEs so you can focus on vulnerabilities that actually matter to your application.
Company News
Socket is bringing best-in-class reachability analysis into the platform — cutting false positives, accelerating triage, and cementing our place as the leader in software supply chain security.
Product
Socket is introducing a new way to organize repositories and apply repository-specific security policies.