
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.
dynamic-iptables
Advanced tools
Dynamic Iptables is a Node.js module and CLI tool that generate iptables rules by DNS names.
> npm install dynamic-iptables --save
or for CLI
> npm install -g dynamic-iptables
> dynamic-iptables --help
# Usage: dynamic-iptables [options]
#
# Options:
# -V, --version output the version number
# -m, --multiport add multiport to iptables command
# -c, --chain <chain> defines chain to apply rules
# -r, --recreate-chain remove and create chain
# -p, --proto <proto> defines protocol tcp|udp
# --dport <dport> defines dport
# -s, --source <source> defines source to rules
# -j, --target <target> defines target to ACCEPT|DROP|REJECT|RETURN
# -h, --help output usage information
> dynamic-iptables -s 192.168.1.1 -p tcp -m --dport 80,443 -j ACCEPT github.com
# iptables -I FORWARD -s 192.168.1.1 -d 192.30.253.112 -p tcp -m multiport --dport 80,443 -j ACCEPT
const DynIptables = require('dynamic-iptables')
const remove = DynIptables.removeChain('dyn-iptables')
const create = DynIptables.createChain('dyn-iptables')
const options = {
chain: 'dyn-iptables',
proto: 'tcp',
dport: '80,443',
source: '192.168.3.0/24',
target: 'ACCEPT',
multiport: true
}
DynIptables.resolveDnsName('registry.npmjs.org', (err, res) => {
if (err) return console.log(err)
DynIptables.createIptablesRule(res, options, (err, rules) => {
if (err) return console.log(err)
console.log(remove)
console.log(create)
return rules.map((rule) => {
return console.log(rule)
})
})
})
/*
iptables -X dyn-iptables
iptables -N dyn-iptables
iptables -I dyn-iptables -s 192.168.3.0/24 -d 104.16.21.35 -p tcp -m multiport --dport 80,443 -j ACCEPT
iptables -I dyn-iptables -s 192.168.3.0/24 -d 104.16.25.35 -p tcp -m multiport --dport 80,443 -j ACCEPT
iptables -I dyn-iptables -s 192.168.3.0/24 -d 104.16.17.35 -p tcp -m multiport --dport 80,443 -j ACCEPT
iptables -I dyn-iptables -s 192.168.3.0/24 -d 104.16.23.35 -p tcp -m multiport --dport 80,443 -j ACCEPT
iptables -I dyn-iptables -s 192.168.3.0/24 -d 104.16.27.35 -p tcp -m multiport --dport 80,443 -j ACCEPT
...
*/
FAQs
Script to generate iptables rules by DNS names provided in CLI.
We found that dynamic-iptables 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.