ramm 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/ramm.js +1 -1
  2. package/package.json +1 -1
package/dist/ramm.js CHANGED
@@ -210,7 +210,7 @@ var createNftTable = (allowed_ssh_ipv4) => {
210
210
  iif "lo" accept
211
211
  ct state established,related accept
212
212
  ip saddr @allowed_ssh_ipv4 tcp dport 22 accept
213
- tcp dport 22 ct state new limit rate over 3/minute burst 5 packets drop
213
+ tcp dport 22 ct state new limit rate over 700/minute burst 5 packets drop
214
214
  tcp dport 22 accept
215
215
  tcp dport 80 accept
216
216
  tcp dport 443 accept
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramm",
3
3
  "type": "module",
4
- "version": "0.0.18",
4
+ "version": "0.0.19",
5
5
  "scripts": {
6
6
  "build": "bun build ./src/ramm.ts --target bun --outdir ./dist && cp ./src/bun.sh ./dist/bun.sh && bun run types",
7
7
  "types": "tsc --project tsconfig.types.json"