
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
plexidev-paste
Advanced tools
An API wrapper for https://paste.plexidev.org
const paste = require("plexidev-paste");
// Create paste
const post = await paste.post("console.log('Hello World')", {
language: "js",
title: "Example Paste",
});
console.log(post);
/* -> {
id: 'dHhCc8Vn8D',
key: 'bYC2C11dNt7WRDC',
raw: 'https://paste-api.plexidev.org/paste/dHhCc8Vn8D',
url: 'https://paste.plexidev.org/dHhCc8Vn8D.js'
} */
// Get paste
const get = await paste.get(post.id);
console.log(get);
/* -> {
id: 'dHhCc8Vn8D',
createdAt: '2022-03-26T19:30:27.112Z',
updatedAt: '2022-03-26T19:30:27.113Z',
title: 'Example Paste',
content: 'console.log('Hello World')',
views: 1,
size: 12
} */
.post(content, options)
Property | Required? | Default |
---|---|---|
content | Yes | null |
options | No | {} |
options.title | No | "Untitled Paste" |
options.language | No | "js" |
.get(id)
Property | Required? | Default |
---|---|---|
id | Yes | null |
FAQs
An API wrapper for paste.plexidev.org
The npm package plexidev-paste receives a total of 1 weekly downloads. As such, plexidev-paste popularity was classified as not popular.
We found that plexidev-paste 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.