
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
tor-ejector
Advanced tools
Tor-ejector is an express middleware that reject request from tor.
Test url tor-ejector.herokuapp.com
# create tor proxy with docker
docker run -d -p 5566:5566 --env tors=25 mattes/rotating-proxy
# test with ...
curl https://tor-ejector.herokuapp.com
curl --proxy 127.0.0.1:5566 https://tor-ejector.herokuapp.com
npm install tor-ejector
var express = require('express');
var app = express();
var torEjector = require('tor-ejector');
app.use(torEjector());
Name | Default | Description |
---|---|---|
timeInterval | 1800000 (30min) | time interval between each update of TOR addresses |
message | 'Unauthorized' | reply message at a request |
var express = require('express');
var app = express();
var torEjector = require('tor-ejector');
app.use(torEjector({
timeInterval : 30*60*1000,
message : 'Sorry no TOR here'
}));
app.get('*', function (req, res) {
res.send('Hello World!');
});
app.listen(3000, "0.0.0.0", function () {
console.log('Example app listening on port 3000!');
});
FAQs
express middleware
We found that tor-ejector 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.