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.
This is a information fetcher for the anime website called animecharactersdatabase.com and this is made so its easier for people to get the information that they need.
const a = require('acb-api');
a.get_character_by_id(55).then(res => {
console.log(res);
}); // returns data on character
a.get_character_by_search('kirito').then(res => {
console.log(res);
}); // returns an array of characters with that name
a.get_anime_by_id(10002).then(res => {
console.log(res);
}); // return data on anime
a.get_anime_by_search('sword art online').then(res => {
console.log(res);
}); // returns an array of anime with that name
a.get_random_character().then(res => {
console.log(res);
}); // returns data on a random character
get_character_by_id returns:
{
"id": 55,
"anime_id": 6,
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/5688-1445174767.jpg",
"character_image": "http://ami.animecharactersdatabase.com/uploads/chars/thumbs/200/1-235056510.jpg",
"origin": "Clannad",
"gender": "Female",
"name": "Kotomi Ichinose",
"desc": "Kotomi Ichinose is a character from the visual novel Clannad."
}
get_character_by_search returns:
{
[
{
"anime_id": 101471,
"anime_name": "Yurikago yori Tenshi made",
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/4758-1426381234.jpg",
"character_image": "http://ami.animecharactersdatabase.com/uploads/chars/thumbs/200/4758-975182425.jpg",
"id": 33217,
"gender": "Male",
"name": "Hiro Kiritooshi",
"desc": "Hiro Kiritooshi is a character from the eroge Yurikago yori Tenshi made."
},
{
"anime_id": 477,
"anime_name": "Nukenin ~ Hokaku, Soshite Choukyou e ~",
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/5688-539624452.jpg",
"character_image": "http://ami.animecharactersdatabase.com/./images/nukeninhokaku/Kirito_thumb.jpg",
"id": 3286,
"gender": "Male",
"name": "Kirito",
"desc": "Kirito is a character from the eroge Nukenin ~ Hokaku, Soshite Choukyou e ~."
},
{
"anime_id": 102399,
"anime_name": "Sword Art Online",
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/6186-1304975494.jpg",
"character_image": "http://ami.animecharactersdatabase.com/uploads/chars/thumbs/200/6186-2121647960.jpg",
"id": 45455,
"gender": "Male",
"name": "Kirito",
"desc": "Kirito is a character from the anime Sword Art Online."
},...
]
}
get_anime_by_id returns:
{
"anime_name": "Kamitama",
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/5688-2111247850.jpg",
"anime_id": "2220",
"characters": [
{
"id": 19498,
"character_image": "http://ami.animecharactersdatabase.com/./images/2220/Cyamu_thumb.jpg",
"gender": "Female",
"name": "Cyamu",
"desc": "Cyamu is a character from the eroge Kamitama."
},
{
"id": 19499,
"character_image": "http://ami.animecharactersdatabase.com/./images/2220/Setsuna_thumb.jpg",
"gender": "Female",
"name": "Setsuna",
"desc": "Setsuna is a character from the eroge Kamitama."
}
]
}
get_anime_by_search returns:
{
[
{
"characters_url": "https://www.animecharactersdatabase.com/api_series_characters.php?anime_id=102399",
"anime_id": 102399,
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/6186-1304975494.jpg",
"anime_name": "Sword Art Online"
},
{
"characters_url": "https://www.animecharactersdatabase.com/api_series_characters.php?anime_id=104917",
"anime_id": 104917,
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/5688-822941656.png",
"anime_name": "Sword Art Online (Series)"
},
{
"characters_url": "https://www.animecharactersdatabase.com/api_series_characters.php?anime_id=104106",
"anime_id": 104106,
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/5688-86245494.jpg",
"anime_name": "Sword Art Online 2"
},
{
"characters_url": "https://www.animecharactersdatabase.com/api_series_characters.php?anime_id=105821",
"anime_id": 105821,
"anime_image": "http://ami.animecharactersdatabase.com/productimages/u/29946-1282047024.jpg",
"anime_name": "Sword Art Online Alternative: Gun Gale Online"
},...
]
}
get_random_character returns:
{
"id": 666,
"anime_id": 90,
"anime_image": "http://ami.animecharactersdatabase.com/productimages/90.jpg",
"character_image": "http://ami.animecharactersdatabase.com/./images/maihime/Reito_thumb.jpg",
"origin": "Mai-HiME - The Genealogical Tree of Fate",
"gender": "Male",
"name": "Reito Kanzaki",
"desc": "Reito Kanzaki is a character from the visual novel Mai-HiME - The Genealogical Tree of Fate."
}
FAQs
a api that uses the animecharacterdatabase and access information from there
The npm package acb-api receives a total of 0 weekly downloads. As such, acb-api popularity was classified as not popular.
We found that acb-api 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.