호그와트

go로 서버 뚫는 법

영웅*^%&$ 2022. 6. 25. 12:53
728x90

package main

import (

"fmt"

"log"

"net/http"

)

const port string = ":4000"

func home(rw http.ResponseWriter, r *http.Request) {

fmt.Fprint(rw, "hello you're a panda")

}

func main() {

http.HandleFunc("/", home)

fmt.Printf("listening on http://localhost%s\n", port)

log.Fatal(http.ListenAndServe(port, nil))

}

728x90

'호그와트' 카테고리의 다른 글

기본 성적 확장하기  (0) 2022.07.02
드림핵 csrf advanced  (0) 2022.06.27
블록체인은 행복입니다  (0) 2022.06.24
드림핵 out of bound  (0) 2022.06.21
드림핵 csp bypass advanced 초 간단 풀이  (0) 2022.06.18