Go 언어4 golang : shellcode 작성 ][test111 폴더 생성하기 golang : shellcode 작성 ][test111 폴더 생성하기 ■ 사용법 sudo apt install nasm https://speedr00t.tistory.com/596 c lang : shellcode 작성 ][test111 폴더 생성하기 ■ 사용법 sudo apt install nasm https://speedr00t.tistory.com/596 speedr00t.tistory.com https://youtu.be/Fyr4ten5Rbs 2023. 1. 18. go 설치부터 hello world 까지(ubuntu) go 설치부터 hello world 까지. 1. go 홈페이지 https://golang.org/dl/ 2. 설치 chmod 755 go.sh . go.sh 3. helloworld.go 소스 4. 결과 go run hello.go https://www.youtube.com/watch?v=DsiTeAcBp6E 2017. 9. 26. [go언어]http request http request 1. 소스 package main import ( "fmt" "io" "log" "net/http" "os" ) func main() { if len(os.Args) != 2 { fmt.Fprintf(os.Stderr, "Usage: %s URL\n", os.Args[0]) os.Exit(1) } response, err := http.Get(os.Args[1]) if err != nil { log.Fatal(err) } else { defer response.Body.Close() _, err := io.Copy(os.Stdout, response.Body) if err != nil { log.Fatal(err) } } } 2. 실행 go run 0x01.go http://192.. 2016. 7. 11. go 설치부터 hello world 까지(windwos) go 설치부터 hello world 까지. 1. go 홈페이지 https://golang.org/dl/ 2. 각자 os에 해당하는 install 파일 다운로드 3. 설치 4. helloworld.go 소스 package main import "fmt" func main() { fmt.Printf("Hello, world.\n") } 5.결과( go run helloworld.go ) 2016. 7. 11. 이전 1 다음