←back to thread

664 points alexflint | 2 comments | | HN request time: 0.414s | source
Show context
ranger_danger ◴[] No.42921763[source]
Why not use eBPF instead? Then you could see all http requests from all processes at once, including ones that are already running. Plus you wouldn't need to bother with TLS at all, just hook on e.g. write(2).
replies(5): >>42921870 #>>42921954 #>>42923824 #>>42924500 #>>42927428 #
ARob109 ◴[] No.42927428[source]
Using uprobes to hook the SSL library, would it be possible to filter content by inspecting and modifying eg the decrypted HTTP response ?
replies(1): >>42928234 #
ranger_danger ◴[] No.42928234[source]
absolutely
replies(1): >>42929118 #
1. farnulfo ◴[] No.42929118[source]
eBPF TLS tracing: The Past, Present and Future https://blog.px.dev/ebpf-tls-tracing-past-present-future/
replies(1): >>42933364 #
2. ddelnano ◴[] No.42933364[source]
Author here :). Happy to answer any questions on this TLS tracing stuff.