
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.
REST for CRUD file operations on dropbox
.
REpresentational State Transfer is an abstraction of the architecture of the World Wide Web.
Create Read Update Delete is 4 basic functions of persistent storage.
npm i restbox
Name | Method | Query | Body | Description |
---|---|---|---|---|
fs | GET | get file or dir content | ||
sort | sort dir content by name , | |||
size , or time | ||||
order | order of sorting, can be: | |||
asc or desc | ||||
raw | get file or raw dir content | |||
size | get file or dir size | |||
time | get time of file change | |||
hash | get file hash | |||
PUT | file content | create/write file | ||
unzip | file content | unzip and create/write file | ||
dir | create dir | |||
PATCH | diff | patch file | ||
DELETE | delete file | |||
files | Array of names | delete files |
const restbox = require('restbox');
const http = require('http');
const express = require('express');
const app = express();
const server = http.createServer(app);
const port = 1337;
const ip = '0.0.0.0';
app.use(restbox({
token: 'your dropbox token',
prefix: '/dropbox', // default
root: '/', // default, can be string or function
}));
app.use(express.static(__dirname));
server.listen(port, ip);
MIT
FAQs
REST for CRUD file operations on dropbox
The npm package restbox receives a total of 127 weekly downloads. As such, restbox popularity was classified as not popular.
We found that restbox 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.