Hi120ki
Hi120ki
I'm facing the same issue. Shouldn't we add an option to choose whether to access the container registry?
Thank you for updating image. I'm creating an environment for testing, and I faced an issue #49 . Could you give me some comments? Thank you.
Hi, a PR is created. Could you review especially about the UPF config? Thank you.
@darryk10 I have committed part of your suggestion. Your suggestion about this ```yaml or (fd.nameraw glob '*/dev/*/fd/*..*') or (fd.nameraw glob '*/var/spool/cron/crontabs/*..*') ``` make it impossible to detect these commands. ```...
Thank you for comment. I try this code, but no stdout. ```java public class InstrumentInterceptor { @RuntimeType public static Object intercept( @Argument(0) HttpServletRequest request, @Argument(1) HttpServletResponse response, @SuperCall Callable callable)...
Yes, this code import `net.bytebuddy.implementation.bind.annotation.Argument;` ```java package com.example.profile; import java.util.concurrent.Callable; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.bytebuddy.implementation.bind.annotation.Argument; import net.bytebuddy.implementation.bind.annotation.RuntimeType; import net.bytebuddy.implementation.bind.annotation.SuperCall; public class InstrumentInterceptor { @RuntimeType public static Object intercept( @Argument(0)...
[This code](https://github.com/hi120ki/spring-javaagent-test/blob/main/agent/src/main/java/com/example/profile/InstrumentInterceptor.java#L17) try to print `HttpServletRequest`'s property, and If it works, the output should be like this ``` [ShowMethod method1] GET ``` but there is **no stdout** and **no error...
Thank you. I add `.with(AgentBuilder.Listener.StreamWriting.toSystemError().withErrorsOnly())` to `new AgentBuilder.Default()`, then got an error message. ``` [Byte Buddy] ERROR org.springframework.web.servlet.DispatcherServlet [org.springframework.boot.loader.LaunchedURLClassLoader@72e5a8e, unnamed module @f68f0dc, Thread[main,5,main], loaded=false] java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest at java.base/java.lang.Class.getDeclaredMethods0(Native Method) at...
@darryk10 I write this rule with referring a rule `Directory traversal monitored file read`. Then I only checked `directory_traversal` macro and forgot to add some `evt.type`. I agree with adding...
@Biagio-Dipalma Thank you for reply! We should add `open_read or open_file_failed` as @darryk10 suggests. About `(fd.nameraw glob '/proc/root/*/*..*') or (fd.nameraw glob '/proc/self/*/*..*')`, I think there are `/proc/self/root/` or `/proc/1/root/` (=`/proc/[pid]/root/`)...