
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
appium-jsonwp-proxy
Advanced tools
Proxy middleware for the Selenium JSON Wire Protocol. Allows
The proxy is used by instantiating with the details of the Selenium server to which to proxy. The options for the constructor are passed as a hash with the following possible member:
scheme - defaults to 'http'server - defaults to 'localhost'port - defaults to 4444base - defaults to '/wd/hub'sessionId - the session id of the session on the remote serverOnce the proxy is created, there are two async methods:
command (url, method, body)
Sends a "command" to the proxied server, using the "url", which is the endpoing, with the HTTP method and optional body.
import JWProxy from 'appium-jsonwp-proxy';
let host = 'my.host.com';
let port = 4445;
let proxy = new JWProxy({server: host, port: port});
// get the Selenium server status
let seStatus = await proxy.command('/status', 'GET');
proxyReqRes (req, res)
Proxies a request and response to the proxied server. Used to handle the entire conversation of a request/response cycle.
import JWProxy from 'appium-jsonwp-proxy';
import http from 'http';
let host = 'my.host.com';
let port = 4445;
let proxy = new JWProxy({server: host, port: port});
http.createServer(function (req, res) {
await proxy.proxyReqRes(res, res);
}).listen(9615);
FAQs
Reusable JSONWP Proxy
We found that appium-jsonwp-proxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.