
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
A REST API testing framework built on node.js that makes testing API endpoints straightforward.
Just define your APIs in a json file, Bluecat will create all the methods for you, plus it removes callbacks so tests that have a complex API call flow will be more clear.
Bluecat give you full control over the request URL query, headers and body in test case.
For HTTP API call flow, Bluecat maintains session cookies for you automatically.
$ npm install bluecat
{
"mobileapi": {
"typeahead": {
"schema": "http",
"method": ["GET"]
}
}
}
var expect = require("chai").expect;
var ServiceSync = require("bluecat").ServiceSync;
var Api = require("bluecat").Api;
var host = 'mobile.walmart.com';
describe("typeahead service", function() {
before(function() {
t = new ServiceSync(Api("mobileapi"), host);
})
it("typeahead?term=xbo&cat=0&num=8", function(done) {
t.run(function() {
// send GET to typeahead?term=xbo&cat=0&num=8
var r = t.typeahead.GET({
term: 'xbox',
cat: 8,
num: 0
});
// verify response
expect(r.err).to.equal(null);
expect(r.data.statusCode).to.equal(200);
expect(r.data.body).to.have.ownProperty("specific");
done();
})
})
})
Licensed under the MIT
FAQs
Library for building RESTful API HTTP requests, best for generic RESTful API Test Framework
We found that bluecat 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.
Security News
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.