hunter/pre_curl_com.go
2020-04-10 16:39:48 +08:00

15 lines
326 B
Go

package hunter
import (
gcurl "github.com/474420502/gurl"
)
// PreCurlUrl Task的 curl bash 预处理组件
type PreCurlUrl string
func (h PreCurlUrl) Before(ctx *TaskContext) {
gurl := gcurl.ParseRawCURL(string(h))
ctx.GetHunter().SetSession(gurl.CreateSession())
ctx.SetWorkflow(gurl.CreateWorkflow(ctx.Session()))
}