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.
insane-openbazaar-api
Advanced tools
Openbazaar API client for Nodejs. WARNING: Incomplete implementation!!
74c2b5c51fd57084dbdc0f593b50ea39d8971806
// include the module
var OpenBazaarAPI = require('insane-openbazaar-api');
// create a new instance
var ob = new OpenBazaarAPI({
"username": "chris_grimmett", // the username to your openbazaar server
"password": "rosebud" // the password to your openbazaar server
});
// log into your openbazaar server
ob.login(function(err) {
if (err) throw err;
// get your openbazaar profile description
ob.profile(function(err, reply) {
if (err) throw err;
console.log(reply.profile.short_description);
// get someone else's profile
ob.profile(function('a06aa22a38f0e62221ab74464c311bd88305f88c', err, reply) {
if (err) throw err;
console.log(reply.profile.website);
});
});
});
ob.login
and ob.profile
are simple wrappers to the OpenBazaar-Server API endpoints. You have to make sure that your app is logged into the OpenBazaar-Server before you can call ob.profile
. If the OpenBazaar-Server restarts while your API client is running, your past authentication cookies are invalidated and you have to log in again. This means you have to write extra code to check the state of your login, which can be annoying. To make your job easier, I've made a convenience method for getting information from the API. Just call it and expect a response. Calling .get() will ensure that you have a valid authentication cookie and you're able to receive information from the API.
ob.get('profile', 'a06aa22a38f0e62221ab74464c311bd88305f88c', function(err, reply) {
if (err) throw err;
console.log(reply.profile.handle);
});
headers.txt
, use child_process to send said headers to memory.
save the headers in ob.headers
so multiple instances of insane-openbazaar-api class can be running and connected
to separate OpenBazaar-Servers.FAQs
OpenBazaar API client for Node.
The npm package insane-openbazaar-api receives a total of 1 weekly downloads. As such, insane-openbazaar-api popularity was classified as not popular.
We found that insane-openbazaar-api 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
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.