You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
url := "http://xxx.com/123/actionChain1.action"
r, err := regexp.Compile(`\/(\w+)\/\S+\.(do|action)$`)
if err != nil {
return
}
if ok := r.MatchString(url); ok {
m := r.FindStringSubmatch(url)
fmt.Println("m:", m)
}
能给一个struts2漏洞检测的配置的demo吗?
The text was updated successfully, but these errors were encountered: