
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
rentry-pastebin
Advanced tools
Client for https://rentry.co/ API
$ npm install rentry-pastebin
$ git clone git://github.com/klarulor/rentry-pastebin/ --depth 1
$ cd example
$ npm install
import {RentryClient, Paste} from "rentry-pastebin";
const client = new RentryClient();
(async () => {
await client.createToken();
console.log(`New token is: ${client.getToken()}`);
const paste = await client.createPaste({content: "Idk some words maybe", customEditCode: "imsostupid"})
console.log(`Paste url is: "https://rentry.co/${paste.url}" and secret edit key is "${paste.editCode}" and content is "${paste.paste.getContent()}"`);
//paste.paste.pull(); // Pull or update content from rentry.co
setTimeout(() => {
paste.paste.setContent("new content; New message xD");
console.log(`Updated content. Check the website`);
}, 5000);
})()
Import:
import {RentryClient, Paste} from "rentry-pastebin";
Create client with auth-token:
const client = new RentryClient();
await client.createToken();
console.log(`New token is: ${client.getToken()}`);
Create new paste:
const struct = await client.createPaste({content: "Idk some words maybe", customEditCode: "imsostupid"})
console.log(`Paste url is: "https://rentry.co/${struct.url}" and secret edit key is "${struct.editCode}" and content is "${struct.paste.getContent()}"`);
Update content
struct.paste.setContent("new content; New message xD");
FAQs
Client for RENTRY-Pastebin API
The npm package rentry-pastebin receives a total of 51 weekly downloads. As such, rentry-pastebin popularity was classified as not popular.
We found that rentry-pastebin 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.