
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
@best/agent-hub
Advanced tools
A best hub represents a remote runner who relies/abstract other best-agents. These are the main benefits of using the agent hub:
To start the hub server, simply run in your command line:
node bin/best-agent-hub.js
This command will start the hub server using the following configuration:
6000
. It can be overridden by setting env.PORT
to the desired port.secret
. It's recommended to override it by setting env.TOKEN_SECRET
to the desired secret used authenticate clients.You can configure a preset of agents when the hub starts by setting env.CONFIG
to a json string representing the config for the hub.
The configuration of the hub is an array of hubs agents. Each agent represents a remote best agent like:
const config = {
agents: [
{
spec: {
browser: 'chrome', // Browser name
version: '76', // Browser version (major)
},
host: 'http://localhost:5000', // Required. Url used to connect to the agent.
options: { path: '/best' }, // Connection
remoteRunner: '@best/runner-headless', // Required. The runner which the agent will use when running the job.
remoteRunnerConfig: {}, // Required (may be an empty object). The Runner config for the remote runner in the agent.
},
{
spec: {
browser: 'ie',
version: '11',
},
host: 'http://127.0.0.1:5002',
options: { path: '/best' },
remoteRunner: '@best/runner-webdriver',
remoteRunnerConfig: {
webdriverOptions: {
desiredCapabilities: {
platform: 'WINDOWS',
browserName: 'internet explorer',
version: '11',
ignoreZoomSetting: true,
initialBrowserUrl: 'about:blank',
nativeEvents: false,
},
},
},
},
],
};
// set env.CONFIG=JSON.stringify(config);
Note: All agents with the same spec, should have the same configuration and hardware characteristics, this must be ensured given that a job to be run with these specs, can run in any of the agents, and they should return same results.
Add a new runner config section on your best.config:
// Replace this token with a generated one for the used TOKEN_SECRET when starting the hub server
const hubAuthenticationToken =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzY29wZSI6ImNsaWVudCIsImlhdCI6MTU2MTYwNzI1OCwiZXhwIjoxNTY0MTk5MjU4fQ.BER-PIIlsf6NWNBctWrmS1YWB4QkI2aYiNp0BE6aASU';
module.exports = {
projectName: 'simple-benchmark-chrome',
benchmarkOnClient: true,
runnerConfig: [
{
runner: '@best/runner-headless',
alias: 'default',
},
// Configs to use the hub
{
runner: '@best/runner-hub',
alias: 'hub-chrome',
config: {
host: 'http://localhost:6000',
options: {
path: '/hub',
query: {
token: hubAuthenticationToken,
},
},
spec: {
browser: 'chrome',
version: '76',
},
},
},
{
runner: '@best/runner-hub',
alias: 'hub-ie11',
config: {
host: 'http://localhost:6000',
options: {
path: '/hub',
query: {
token: hubAuthenticationToken,
},
},
spec: {
browser: 'ie',
version: '11',
},
},
},
],
};
Then you can run your measures in your project:
# Measures in chrome:
best --runner hub-chrome
# Measures in ie11:
best --runner hub-ie11
Once the hub has already started you can add agents by doing a post request to /api/v1/agents
. Example:
curl -X POST \
http://localhost:6000/api/v1/agents \
-H 'authorization: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzY29wZSI6ImFnZW50IiwiaWF0IjoxNTYxNjE0MjM3LCJleHAiOjE1NzcxNjYyMzd9.IjdCBSPPIGSgpYHN8Pxhusaiv48T1t6rmxR2xzdp17M' \
-H 'cache-control: no-cache' \
-H 'content-type: application/json' \
-d '{
"host":"http://localhost:5000",
"options":{"path":"/best"},
"remoteRunner":"@best/runner-headless",
"remoteRunnerConfig":{},
"spec": {
"browser": "chrome",
"version": "76"
}
}'
FAQs
Best Hub
We found that @best/agent-hub demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.