-
|
Hello I would like to check the traffic of the pod running through containerd through that tool. The above article was written based on docker, so I used it like the command below in accordance with containerd. When executing curl in pod with this command, it is captured well, but the server's communication is not captured. I saw what socket the server uses as lsof etc, but I'm using java, so I can't find any specific files. Do you happen to have any instructions to find out what libssl is used in java, node, etc? Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
The program written in Therefore, it is impossible to intercept encrypted communications of the |
Beta Was this translation helpful? Give feedback.
The program written in
Javadoes not utilize the libssl library.Nodeis statically compiled and integrated into the executable file.Therefore, it is impossible to intercept encrypted communications of the
Javaprogram. However, support forNodeencryption can be provided; you need to set theNodefile with the--libsslargument.