Eki's blog Eki's blog
Home
  • Library

    • PHP
    • JAVA
    • Node
    • Python
  • Contest

    • D3CTF 2021 Write Up
    • 虎符CTF2021
    • 2021 红帽 Web Write Up
  • Problem Set

    • Ethernaut Write Up
Pentest
Develop
  • Friends
About
  • Website
  • Tools
  • Categories
  • Tags
  • Archives
GitHub (opens new window)

Eki

Dreamer of Dreams
Home
  • Library

    • PHP
    • JAVA
    • Node
    • Python
  • Contest

    • D3CTF 2021 Write Up
    • 虎符CTF2021
    • 2021 红帽 Web Write Up
  • Problem Set

    • Ethernaut Write Up
Pentest
Develop
  • Friends
About
  • Website
  • Tools
  • Categories
  • Tags
  • Archives
GitHub (opens new window)
  • Catalogue

  • 隐写术
  • PHP

  • protocol
  • Java

  • Node

  • Python

  • Golang

    • misc
      • Slice Feature
      • Golang Template SSTI
      • Golang < 1.11 CRLF Inject
        • 参考资料
  • Arbitrary Code Execution
  • Shell
  • SQLi
  • SSRF
  • SSTI
  • lfi
  • XSS
  • XXE
  • convert
  • .htaccess文件利用
  • 序列化与反序列化问题小结
  • CTF
  • Golang
Eki
2021-07-04
目录

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

# 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
Python 积累
Arbitrary Code Execution

← Python 积累 Arbitrary Code Execution→

最近更新
01
QWB CTF2022 线下赛总决赛部分题解
08-25
02
CISCN2022 总决赛部分题解
08-25
03
DSCTF2022决赛 部分writeup
08-08
更多文章>
Theme by Vdoing | Copyright © 2019-2022 EkiXu | Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License.
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式