github.com/HXSecurity/DongTai-agent-go@v0.4.2/core/gin/ginContextShouldBindUri/install.go (about) 1 package ginContextShouldBindUri 2 3 import ( 4 "fmt" 5 "github.com/HXSecurity/DongTai-agent-go/model" 6 "github.com/brahma-adshonor/gohook" 7 "github.com/gin-gonic/gin" 8 ) 9 10 func init() { 11 model.HookMap["ginContextShouldBindUri"] = new(GinContextShouldBindUri) 12 } 13 14 type GinContextShouldBindUri struct { 15 } 16 17 func (h *GinContextShouldBindUri) Hook() { 18 context := &gin.Context{} 19 err := gohook.HookMethod(context, "ShouldBindUri", ShouldBindUri, ShouldBindUriT) 20 if err != nil { 21 fmt.Println(err, "GinContextShouldBindUri") 22 } else { 23 fmt.Println("GinContextShouldBindUri") 24 } 25 } 26 27 func (h *GinContextShouldBindUri) UnHook() { 28 context := &gin.Context{} 29 gohook.UnHookMethod(context, "ShouldBindUri") 30 }