ANTITREE

/dev/loop3 ro squashfs ---------------------------------------------------------~inode 0x4e21c8

uts:ns 4026532198 ----------------------------------------------------------#cap_sys_admin -eff

seccomp filt 0x1f ---------------------------------------------------------#rtt 12.4ms mtu 1500

::fe80::4a2c/64 ::::::::::::::::::::::::::::::::::::::::::::::::::::::::[vmalloc 0xffffc90000]

antiTree

Containers, kubernetes, AI, sandboxes, security, Linux isolation

and whatever else looks interesting enough to take apart.

[SANDBOXES]
[RUNTIME]GVISORID: RTM-49GVISOR / SYSCALL 0x2A / 11:16:45
Syscalls & sandboxes
[CONTAINERS]
[CLUSTER]CONTAINERDNODE: K8S-17CGROUP V2 / CAP_SYS_ADMIN / 04:22:09
Containers
[AI AGENTS]
[INFERENCE]TOOL-CALLCTX: 128KMCP / TOKENS 4096 / 19:41:02
AI & agents

· Containers

Running nginx on all ports

If you’re like me and want to stand up a quick server that can response on all ports, here’s a quick way to do it. You’ll need a ton of memory to pull this off so setup your machine or VM accordingly. This works for nginx but you’ll have to go through some of the same steps for other services.

Linux Ulimits

Check current ulimits, hard limits, and soft limits on your current account: ulimit -n ulimit -Hn ulimit -Sn

To check them for the “www-data” user you can log in via: sudo su -s /bin/bash www-data

This gist has a pretty good summary of possible nginx configuration options you want to choose.

  • add fs.file-max = 999999 to /etc/sysctl.conf`
  • add www-data soft nofile 999999 and www-data hard nofile 999999 in /etc/security/limits.conf
  • run sysctl -p
  • add worker_rlimit_nofile 999999; in /etc/nginx/nginx.conf`

Listen on all ports

Replace the listening on port 80 and add all of the ports to the /etc/nginx/sites-available/default.

python -c 'for i in range(1,65535): print("\tlisten\t%s;" % i)' > alltheports.txt