[go-nuts] Is there a pure Go packet capture and analysis tool?

2023-07-26 Thread Aurora
I'm looking for a pure Go method to capture live TCP traffic. I've tried using gopacket. It works fine, but it's using C behind the scenes and that makes it not suitable for my situation. Is there any way to this in pure Go? -- You received this message because you are subscribed to the

[go-nuts] [net/http] How to capture raw client TLS handshake data?

2023-03-06 Thread Aurora
Is it possible to capture the whole TLS handshake data coming from a HTTP client request, enough to actually build a JA3 hash out of it? The tls.ClientHelloInfo does apparently give some but not all the parts which are needed to build a JA3 hash. -- You received this message because you are

Re: [go-nuts] How to disable all go compiler build output compressions?

2022-12-15 Thread Aurora
lacing the 100MB of "empty" with a > placeholder). > > On Thu, Dec 15, 2022 at 10:58 AM Aurora wrote: > >> I've embedded an empty 100MB file in my Go code, for some testing >> purposes. >> When I run 'go build', the binary output would be something arou

[go-nuts] How to disable all go compiler build output compressions?

2022-12-15 Thread Aurora
I've embedded an empty 100MB file in my Go code, for some testing purposes. When I run 'go build', the binary output would be something around 20MB. I want the output binary to be more than 100MB, its real size. How's this compression being applied to the binary? How to disable all such