-
|
I am trying to hook an HTTPS communication from a docker container (the server is in the container and clients are connecting to it). I followed the wiki page: https://github.com/gojue/ecapture/wiki/trace-TLS-in-container
The first one can correctly be hooked but no traffic is being captured so I suppose the traffic is actually going through the second one. However, no symbols are available on the binary but I can get the offset of the functions through How would I specify the offset of these functions (SSL_get_wbio, ...) when invoking the program (or directly in the source code). |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
add like this: refer: ecapture/user/module/probe_mysqld.go Lines 131 to 137 in b73a099 |
Beta Was this translation helpful? Give feedback.
-
|
Similarly, a clear offset for |
Beta Was this translation helpful? Give feedback.
Similarly, a clear offset for
SSL_get_wbioneeds to be provided. That is to say, the current ssl.so has its symbol table stripped, and you need to set the offsets for all hook functions.