Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
hono-upload
Advanced tools
A memory efficient upload handler for hono using streaming and busboy.
[!WARNING]
This is an early version of the package. Might have issues and breaking changes.
npm install hono-upload
import { Hono } from 'hono';
import { uploadHandler, uploadErrors } from 'hono-upload';
hono.post('/upload', async (ctx) => {
try {
const result = await uploadHandler({
ctx,
maxFileSize: 5 * 1024 * 1024 * 1024, // 5GB
onFile: (file, fileInfo) => {
// file is a Readable
return new Promise<'ok'>((res, rej) => {
if (fileInfo.mimeType === 'application/pdf') {
rej(new Error('INVALID_MIME_TYPE'));
return;
}
filePath = path.resolve('.', 'uploads', fileInfo.filename);
if (existsSync(filePath)) {
const err = new Error('FILE_ALREADY_EXISTS');
rej(err);
return;
}
const writeStream = createWriteStream(filePath);
file.pipe(writeStream);
writeStream
.on('close', () => {
res('ok');
})
.on('error', (err) => {
rej(err);
});
});
},
});
ctx.status(200);
return ctx.json({ result });
} catch (e) {
console.error(e);
if (filePath && existsSync(filePath)) rmSync(filePath);
if (!(e instanceof Error)) {
ctx.status(500);
return ctx.json({ message: 'UNKNOWN_ERROR' });
}
const { message, cause } = e;
const errorCodes = {
[uploadErrors.MISSING_BODY]: 400,
[uploadErrors.INVALID_CONTENT_TYPE]: 400,
[uploadErrors.CONTENT_LENGTH_MISSING]: 400,
[uploadErrors.MAX_FILE_SIZE_EXCEEDED]: 400,
[uploadErrors.MAX_ONE_FILE_ALLOWED]: 400,
FILE_TOO_LARGE: 400,
FILE_ALREADY_EXISTS: 409,
INVALID_MIME_TYPE: 400,
};
const code = errorCodes[message];
if (message === 'MAX_FILE_SIZE_EXCEEDED') {
ctx.status(code);
return ctx.json({
message,
maxFileSize: 5 * 1024 * 1024 * 1024,
fileSize: Number((cause as Error).message),
});
}
if (code < 500) {
ctx.status(code);
return ctx.json({ message });
}
ctx.status(500);
return ctx.json({ message: 'UNKNOWN_ERROR' });
}
});
FAQs
A memory efficient upload handler for hono.
The npm package hono-upload receives a total of 20 weekly downloads. As such, hono-upload popularity was classified as not popular.
We found that hono-upload demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.