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.
@pyvot360/cms
Advanced tools
Prerequisite: Your API Key (16 digits alphanumeric). Head over to our website to create yours for free!
Unpkg
<script src="https://unpkg.com/@pyvot360/cms" type="module" ></script>
NPM
npm i @pyvot360/cms
YARN
yarn add @pyvot360/cms
```
const {ClientSDK} = require("@pyvot360/cms");
// import {ClientSDK} from "@pyvot360/cms";
const sdk = new ClientSDK('YOUR-API-KEY');
```
sdk.getAll()
(async) Fetches all articlessdk.getById(articleId: string)
(async) Fetches one article by idsdk.getByUrl(articleUrl: string)
(async) Fetches one article by url stringsdk.getTopics()
(async) Fetches all topicssdk.search(filters: ArticleFilters)
* (async) Fetches articles related to search filterssdk.viewed(articleId: string)
(async) Updates the view count of an articleawait
or .then()
export declare interface Article {
id?: string;
title: string;
author: Partial<Author>;
banner: string;
content: string;
tags: string[];
stats?: ArticleStats;
dateWritten?: number;
dateEditted?: number;
isPublished: boolean;
_secondaryKey?: string;
url?: string;
}
export declare interface ArticleStats {
views: number;
}
export declare interface Author {
name?: string;
bio?: string;
email?: string;
avatar?: string;
}
export declare interface ArticleFilters {
title?: string;
tag?: string;
author?: string;
}
export declare class ClientSDK {
constructor(key: string);
getAll(): Promise<Article[]>;
getById(articleId: string): Promise<Article | undefined>;
getByUrl(articleUrl: string): Promise<Article | undefined>;
getTopics(): Promise<string[]>;
search(filters: ArticleFilters): Promise<Article[]>;
viewed(articleId: string);
}
FAQs
Client SDK for CMS360
The npm package @pyvot360/cms receives a total of 2 weekly downloads. As such, @pyvot360/cms popularity was classified as not popular.
We found that @pyvot360/cms demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.