
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Prosthetic is a Node web proxy that allows you to manipulate web sites with simple (yet flexible) JSON configuration files. As a node module, it exposes an express-compatible server function (the module export) and a suite of operations for manipulating (
Prosthetic is a Node web proxy that allows you to manipulate web sites with simple (yet flexible) JSON configuration files. As a node module, it exposes an express-compatible server function (the module export) and a suite of operations for manipulating (inserting, removing and replacing) response body content.
To run a proxy, just run server.js with node:
$ node server.js --proxy http://example.com
# or
$ ./server.js --proxy http://example.com
Then visit localhost:8001 in your browser. Run node server.js --help (or without any arguments) to see the full usage:
Usage:
1. with a proxy URL and one or more injections:
node ./server.js --proxy URL [injections]
2. with a JSON config and proxy URL:
node ./server.js -c config.json --proxy URL [options] [injections]
3. with a JSON config that includes the 'proxy' option:
node ./server.js -c config.json [options] [injections]
where [injections] is an optional list of JSON filenames
containing injection specs.
Options:
--proxy, -p the URL to proxy (e.g. http://example.com)
--rewrite, -r whether to rewrite the proxy URL in each response
--config, -c the config file to load
--port, -P the port on which to listen (default: 8001)
The included config.sample.json is a good place to start for building a
configuration.
The ops directory contains some examples of operations to run in your proxy.
For instance, the included d3.json simply adds
d3.js to the proxied web page, and
reset-css.json pulls in the YUI CSS
Reset.
Operations are what Prosthetic does to the contents of proxied web pages.
Positional arguments to server.js are interpreted as filenames parsed as
JSON operation specs. Supported operations include inserting text,
HTML elements, scripts and stylesheets; and replacing or removing content.
Add a script (e.g., d3.js):
{
"type": "script",
"url": "http://d3js.org/d3.v3.min.js"
}
Add a stylesheet (e.g., reset css):
{
"type": "style",
"url": "http://yui.yahooapis.com/3.14.0/build/cssreset/cssreset-min.css"
}
To propose a redesign for a web site with your own stylesheets, you could remove all of the CSS from each page first (the "comment" fields are ignored):
[
{
"comment": "replace all <link rel=stylesheet> elements",
"type": "remove",
"text": "<link[^>]+rel=.?stylesheet.?[^>]*>(</link>)?"
},
{
"comment": "replace all <style> elements",
"type": "remove",
"text": "<style[^>]*>[^<]*</style>"
}
]
FAQs
Prosthetic is a Node web proxy that allows you to manipulate web sites with simple (yet flexible) JSON configuration files. As a node module, it exposes an express-compatible server function (the module export) and a suite of operations for manipulating (
The npm package prosthetic receives a total of 4 weekly downloads. As such, prosthetic popularity was classified as not popular.
We found that prosthetic 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.