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.
http(s) request handler for nodejs and the browser. Supports baseUrls and direct object construction from request results.
npm install oohttp
The provided index.js can be used directly in the browser if it supports ECMAscript 2018 (and higher). For older browser you will need to transpile.
const oohttp = require('oohttp');
// new oohttp.Request('GET', 'http://someurl')
oohttp.Request.get('http://someurl')
.toJson() // or toString() for the string result
.then((jsonObj) => {
console.log(jsonObj);
});
const oohttp = require('oohttp');
// new oohttp.Request('POST', 'http://someurl')
oohttp.Request.post('http://someurl')
.toJson({
data: 'somedata'
}) // or toString() for the string result
.then((jsonObj) => {
console.log(jsonObj);
});
oohttp.Request.get('http://someurl')
.proxy('http://myproxy.intranet')
.toJson()
.then((jsonObj) => {
console.log(jsonObj);
});
Will request http://someurl?other=value&token=x with the given someHeader
header from this base in addition to the default headers.
const oohttp = require('oohttp');
const base = new oohttp.Base('?token=x');
base.headers['someHeader'] = 'value';
// base.request('GET', 'http://someurl?other=value')
base.get('http://someurl?other=value')
.toJson()
.then((jsonObj) => {
console.log(jsonObj);
});
const oohttp = require('oohttp');
oohttp.Request.get('http://nonexistanturl')
.toJson()
.then((jsonObj) => {
console.log(jsonObj);
})
.catch((err) => {
console.log(err.message);
/**
* Log the response object which contains;
* statusCode
* headers
* data
*/
console.log(err.res);
});
const oohttp = require('oohttp');
class SomeClass {
constructor(obj) {
if(obj) {
Object.assign(this, obj);
}
}
}
oohttp.Request.get('http://someurl/api/objects/someobject')
.toObject(SomeClass)
.then((someObj) => {
console.log(someObj);
});
const oohttp = require('oohttp');
class SomeClass {
constructor(obj) {
if(obj) {
Object.assign(this, obj);
}
}
}
oohttp.Request.get('http://someurl/api/objects')
.toObjectArray(SomeClass)
.then((someObjArray) => {
console.log(someObjArray);
});
const oohttp = require('oohttp');
class SomeClass {
constructor(obj) {
if(obj) {
Object.assign(this, obj);
}
}
}
oohttp.Request.get('http://someurl/api/objects')
.toFunctionArray((obj) => {
return new SomeClass(obj);
})
.then((someObjArray) => {
console.log(someObjArray);
});
All requests inherit these default properties at the time the request is done.
If a similar property is set directly on the request handler (either Base or Request), than that value is used instead.
Request.defaults = {
headers: {
'content-type': 'application/json'
},
method: 'GET',
timeout: 60000,
rejectUnauthorized: true,
autoContentLength: false
};
FAQs
object-oriented http(s) request handler
The npm package oohttp receives a total of 2 weekly downloads. As such, oohttp popularity was classified as not popular.
We found that oohttp 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.
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.