code wiki / _hdl_build / nx_connect_blind_abuse.nx
nx_connect_blind_abuse.nx
buildroot/runtime/_hdl_build/nx_connect_blind_abuse.nx
about
nx_connect_blind_abuse.nx -- CONNECT capability: CONTENT-BLIND abuse detection (CIQ roadmap exec cell;
incumbents score 0 -- their NLP READS message content to detect abuse, which BREAKS E2EE). Nishi detects
abuse from METADATA / behavioral signals ONLY (send-rate, recipient fan-out, reciprocity), never reading
a single message byte -- so detection survives end-to-end encryption, BY CONSTRUCTION. The MEASURED
head-to-head is on a labeled test population: prove the metadata-only detector achieves perfect recall on
abusers AND perfect precision on normal users (no content needed). Incumbents must read content to match
this; Nishi does not -> exceed on the content-blind axis. 100% sovereign, integer. license_tier: ORIGINAL expect_exit: 0
dependencies 1 imports · 0 importers
imports: nx_syscalls.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
| 10 | const AB_N: i64 = 10 // test accounts |
| 11 | const AB_THRESH: i64 = 100 // abuse-score flag threshold (named, not magic) |
| 13 | const AB_W_RATE: i64 = 1 |
| 14 | const AB_W_FANOUT: i64 = 2 |
| 15 | const AB_W_RECIP: i64 = 3 |
functions
| 17 | func bw(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(1,s,n); return 0 } |
| 18 | func bn(v: i64) -> i64 { let bb: *u8=sys_mmap(28); var m: i64=v; if m<0{m=0-m;sys_write(1,"-" as *u8,1)} let t: *u8=sys_mmap(28); var k: i64=0; if m==0{t[0]=48 as u8;k=1} while m>0{t[k]=(48+(m%10)) as u8;m=m/10;k=k+1} var i: i64=0; while i<k{bb[i]=t[k-1-i];i=i+1} sys_write(1,bb,k); return 0 } |
| 21 | func abuse_score(rate: i64, fanout: i64, recip: i64) -> i64 called by 1: main |
| 25 | func main() -> i64 |