Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Search for a community's id
import * as Amino from "amino";
// Uses default 'g' community if none is specified
const client = new Amino.Client();
client.login("myEmail@gmail.com", "myAccountsPassword")
.then(async () => {
const overwatchAmino = await client.searchCommunities("overwatch")[0]
console.log(overwatchAmino.ndcId); // Pull the community ID
})
Start a chatbot on a community:
import * as Amino from "amino";
// Furry Amino's ID (235196899)
const client = new Amino.Client("235196899")
client.login("myEmail@gmail.com", "myAccountsPassword")
.then(() => {
// Start the websocket listener
// This is optional if you don't want to use chat features.
client.listen()
})
client.on("message", async (message) => {
if (message.content == "!ping") {
await message.reply(`${message.author.nickname}, Pong!`)
}
})
Enjoying the library? Good! Have something you want to see in it? Awesome! Please make a new issue in the github repository, and I'll get to it promptly!
There's still a lot of things I need to add, so if something's important to you, I'll put it at the top of my amino to-do list!
Okay, join my discord and I can help you with any issue. The discord is at the top of the ReadMe.
FAQs
Search for a community's id ```ts import * as Amino from "amino";
The npm package amino receives a total of 0 weekly downloads. As such, amino popularity was classified as not popular.
We found that amino 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.