misc
# Golang 安全问题
# Slice Feature
package main
import "fmt"
func main() {
a := make([]uint64, 0)
a = append(a, 1)
a = append(a, 2)
a = append(a, 3)
b := append(a, 4)
c := append(a, 5)
d := append(a, 6)
fmt.Println(a)
fmt.Println(b)
fmt.Println(c)
fmt.Print(d)
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Golang Template SSTI
# Golang < 1.11 CRLF Inject
# 参考资料
https://bycsec.top/2021/02/07/golang%E7%9A%84%E4%B8%80%E4%BA%9B%E5%AE%89%E5%85%A8%E9%97%AE%E9%A2%98/
编辑 (opens new window)
上次更新: 2022/08/09, 14:57:22