nx_antibot_gate.nx
buildroot/runtime/nx_antibot_gate.nx
about
nx_antibot_gate.nx -- GATE for nx_antibot (the /compare/webscraping R4 contract abt_classify). Network-free;
specimens assembled at runtime from the marker rows' own vocabulary. The accept rule pre-declared on the board:
vendor challenge pages are named by vendor; a long article that MENTIONS captcha / Cloudflare / Access Denied reads
CLEAN (the false-positive control, because a wall verdict costs the index a page); 429 is a rate limit; 403 with a
body is a status block; an empty 200 is its own class, never a wall.
license_tier: ORIGINAL
dependencies 3 imports · 0 importers
imports: nx_syscalls.nxnx_antibot.nxnx_gate_verdict.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| 11 | const AG_CAP: i64 = 65536 |
functions
| 13 | func ag_len(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n } |
| 14 | func ag_cat(d: *u8, o: i64, s: *u8) -> i64 { var i: i64 = 0; var p: i64 = o; while s[i] != (0 as u8) { d[p] = s[i]; p = p + 1; i = i + 1 } d[p] = 0 as u8; return p } called by 1: main |
| 15 | func ag_vendor_is(v: *u8) -> i64 |
| 22 | func ag_cls(status: i64, s: *u8) -> i64 { return abt_classify(status, s, ag_len(s)) } |
| 24 | func main() -> i64 |