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.
Api wrapper for my azur lane api
const AzurLane = require("azurlane");
const azurlane = new AzurLane();
async function main() {
const ship = await azurlane.ship("Akagi");
console.log(`${ship.names.en}'s rarity is ${ship.rarity}`); // IJN Akagi's rarity is Super Rare
const build = await azurlane.buildInfo("00:24:00");
console.log(`Ships matching time ${build.time}: ${build.ships.join(", ")}`); // Ships matching time 00:24:00: Foxhound, Fortune, Dace, Albacore
}
// Also catches any api errors that might occur like 400, 429, 500 http errors
// Api errors extend the default error class, have a look at https://kurozeropb.github.io/AzurLane/classes/apierror.html for information
main().catch(console.error);
{
"id": "224",
"names": {
"full": "IJN Akagi (cn: 凰; jp: 赤城)",
"en": "IJN Akagi",
"cn": "凰",
"jp": "赤城"
},
"thumbnail": "https://azurlane.koumakan.jp/w/images/3/3f/AkagiIcon.png",
"skins": [
{
"title": "Default",
"image": "https://azurlane.koumakan.jp/w/images/thumb/0/06/Akagi.png/600px-Akagi.png"
},
{
"title": "Paradise Amaryllis",
"image": "https://azurlane.koumakan.jp/w/images/thumb/3/39/AkagiSummer.png/600px-AkagiSummer.png"
},
{
"title": "Plum and Snow",
"image": "https://azurlane.koumakan.jp/w/images/thumb/d/d0/AkagiNew_Year.png/533px-AkagiNew_Year.png"
},
{
"title": "Deep Crimson Poppy",
"image": "https://azurlane.koumakan.jp/w/images/thumb/6/65/AkagiPledge.png/505px-AkagiPledge.png"
}
],
"buildTime": "Drop Only",
"rarity": "Super Rare",
"stars": {
"value": "★★★☆☆☆",
"count": 3
},
"class": "Akagi",
"nationality": "Sakura Empire",
"hullType": "Aircraft Carrier"
}
{
"time": "00:24:00",
"ships": [
"Foxhound",
"Fortune",
"Dace",
"Albacore"
]
}
FAQs
Api wrapper for the azur lane api
We found that azurlane 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.