firestack
firestack copied to clipboard
Userspace wireguard and network monitor
```mermaid sequenceDiagram Client --x Router : 1st segment, TTL = 1 Client ->> Server: 2nd segment, TTL = 64 Client ->> Server: 1st segment, TTL = 64 ``` WeirdSplitter can...
Related to #46 Todo: - [ ] Add more comments - [ ] Discuss functionality of this dialer.
celzero/rethink-app#1309 PoC: [Lanius-collaris/playground1](https://github.com/Lanius-collaris/playground1) ``` func GoHello(fd int32) int64{ out:=os.NewFile(uintptr(fd), "") defer out.Close() str:=fmt.Sprintf("hello from golang, pid: %d\n", os.Getpid()) len,_:=out.Write([]byte(str)) return int64(len) } ```
A user writes, > TLS record fragmentation is unprivileged and easy to implement ([blog](https://upb-syssec.github.io/blog/2023/record-fragmentation/), [code](https://github.com/UPB-SysSec/DPYProxy/blob/main/network/Proxy.py#L111-L132)). > > An reference patch for [simple-socks](https://github.com/brozeph/simple-socks): > ```diff --- a/src/socks5.js +++ b/src/socks5.js @@ -11,6...
```diff VpnLifecycle com.celzero.bravedns I onStartCommand, us: 10356, primary? true Choreographer com.celzero.bravedns I Skipped 31 frames! The application may be doing too much work on its main thread. JobScheduler com.celzero.bravedns D...
A user writes, > hufrea's method works on older android devices: https://github.com/hufrea/byedpi/blob/82e5229df00859eb3500f0c771a8991d1fe8e607/desync.c#L69-L123 > > If you will implement TCB-Desynchronization (not just sending in reverse order) , hufrea's method is better....
``` 2024-02-09 02:00:02.866 8735-8913 GoLog com.celzero.bravedns I log.go:75: D udp: egress: dns-op; dstaddr(10.111.222.3:53) realips([]) -> unnated([]) 2024-02-09 02:00:03.041 8735-8913 GoLog com.celzero.bravedns I log.go:75: D wall: skip local for clients2.google.com. blockQ...
Why? https://github.com/golang/go/issues/48622 Ref: https://github.com/golang/go/issues/62254
Explore: https://github.com/refraction-networking/utls Read also: https://github.com/3andne/restls/blob/main/Restls-Script:%20Hide%20Your%20Proxy%20Traffic%20Behavior.md
A user says, > User1: Is it possible to auto redirect http:// to https:// once port 80 blocked on default in to next update? > Me: It isn't possible to...