
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.
GateJS is a javascript based reverse & forward proxy with high performance & capability.
For more informations about gatejs & configuration please visit the wiki at https://github.com/binarysec/gate/wiki
note: gatejs team is looking for someone to maintain debian packages, contact us at info [at] binarysec [dot] com
Learn more about gatejs contribution @ https://github.com/binarysec/gate/wiki/Contribution
You need to install before NodeJS >4.x.x. Once nodejs is installed you can run:
$ sudo npm install -g gatejs
To install this project from git, you will have to run the following command :
$ git clone https://github.com/binarysec/gate.git gate
$ cd gate
$ npm install
If you downloaded the zip from github, you will have to fetch the submodules yourself.
You can use the forever process manager to run and control gatejs.
mkdir /var/log/gatejs
forever -a -o /var/log/gatejs/forever.log -e /var/log/gatejs/forever-error.log start --uid gatejs --max_old_space_size=150 /usr/bin/gatejs --config=/etc/gatejs/config.js
You can also run the command at the reboot time using cron!
Add the following lines when editing crontab (crontab -e):
@reboot forever -a -o /var/log/gatejs/forever.log -e /var/log/gatejs/forever-error.log start --uid gatejs --max_old_space_size=150 /usr/bin/gatejs --config=/etc/gatejs/config.js
--max_old_space_size=150 allows to control the V8 garbage collector which is set to 150MB.
apt-get install gcc make g++ python
var serverConfig = function(bs) { return({
serverProcess: 4,
hostname: "testServer0",
runDir: "/var/run/gatejs",
dataDir: "/home/gatejs-data",
logDir: "/var/log/gatejs",
confDir: '/etc/gatejs',
http: {
forwardInterface: {
type: 'forward',
port: 80,
pipeline: 'pipetest'
}
},
pipeline: {
pipetest: [
['cache', { }],
['proxyPass', { mode: 'host', timeout: 10 }]
],
}
})};
module.exports = serverConfig;
FAQs
New Generation of HTTP reverse and forward proxy
We found that gatejs 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.