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.
kawaii-kitsune
Advanced tools
A promise NodeJS wrapper for interacting with the kitsu.io API including typings for typescript
npm install --save kawaii-kitsune
const Kitsu = require('kawaii-kitsune');
const kitsu = new Kitsu();
kitsu.searchAnime('fate/apocrypha')
.then((result) => console.log(result))
.catch((err) => console.error(err));
import * as Kitsu from 'kawaii-kitsune';
const kitsu = new Kitsu();
kitsu.searchAnime('fate/apocrypha')
.then((result: any) => console.log(result))
.catch((err: any) => console.error(err));
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
anime | string | none | The anime you want to search | |
offset | number | X | 0 | Offset for pagination |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
manga | string | none | The manga you want to search | |
offset | number | X | 0 | Offset for pagination |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
animeID | string | none | The anime you want to search |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
mangaID | string | none | The manga you want to search |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
userName | string | none | The name of the user you want to search |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
userID | string | none | The user you want to search |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
characterName | string | none | The name of the character you want to search |
Parameter | Type | Optional | Default | Description |
---|---|---|---|---|
characterID | string | none | The character you want to search |
FAQs
A promise NodeJS wrapper for interacting with the kitsu.io API including typings for typescript
We found that kawaii-kitsune 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.