Ubuntu Pastebin

Paste from zyga at Sat, 11 Mar 2017 21:16:24 +0000

Download as text
1
2
3
4
5
6
7
8
package main

import "syscall"
import "C"

func main() {
	syscall.Exec("/bin/true", []string{"/bin/true"}, nil)
}
Download as text