php小編新一帶你一起探索golang中的持久隱藏服務。 Golang是一種高效的程式語言,以其卓越的效能和並發性而聞名。在這個快節奏的網路時代,隱藏服務成為了許多應用程式的重要組成部分。它們提供了一種安全且可靠的方式,使應用程式能夠長時間運行,同時隱藏其內部細節。本文將介紹golang中如何實現持久隱藏服務,並探討其在實際應用中的應用場景和優勢。無論您是初學者還是有經驗的開發者,都能從中獲得有益的知識和實務經驗。讓我們一起來探索這個有趣的主題吧!
我正在嘗試使用 github.com/cretz/bine/tor 在 golang 中託管隱藏服務。 但每次我啟動程式時,都會啟動一個新的隱藏服務(帶有新的 .onion 位址),而不是先前的隱藏服務。
這是我使用的程式碼
package main import ( "context" "fmt" "github.com/cretz/bine/tor" "log" "net/http" "time" ) func main() { // Start tor with default config fmt.Println("Starting and registering onion service, please wait a couple of minutes...") t, err := tor.Start(nil, nil) if err != nil { log.Panicf("Unable to start Tor: %v", err) } defer t.Close() // Wait at most a few minutes to publish the service listenCtx, listenCancel := context.WithTimeout(context.Background(), 3*time.Minute) defer listenCancel() // Create a v3 onion service onion, err := t.Listen(listenCtx, &tor.ListenConf{Version3: true, RemotePorts: []int{80}}) if err != nil { log.Panicf("Unable to create onion service: %v", err) } defer onion.Close() fmt.Printf("Open Tor browser and navigate to http://%v.onion\n", onion.ID) fmt.Println("Press enter to exit") // Serve the current folder from HTTP errCh := make(chan error, 1) go func() { errCh <- http.Serve(onion, http.FileServer(http.Dir("."))) }() // End when enter is pressed go func() { fmt.Scanln() errCh <- nil }() if err = <-errCh; err != nil { log.Panicf("Failed serving: %v", err) } }
我嘗試強製程式使用相同的 DataDir
t, err := tor.Start(nil, &tor.StartConf{DataDir: "data-dir"})
但這行不通。
您需要建立並儲存一個金鑰,然後將其傳遞給 ListenConf:
請參閱:https://github.com/cretz /bine/blob/master/tor/listen.go#L56
注意:
您正在使用的程式庫提供了執行此操作的函數。
請參閱:https://github.com /cretz/bine/blob/b9d31d9c786616742e39a121b60522e803e96731/torutil/ed25519/ed25519.#go#L132 執行此操作一次並儲存
privateKeyString:
<pre class="brush:golang;toolbar:false;">keyPair, _ := ed25519.GenerateKey()
privateKeyString := hex.EncodeToString(keyPair.PrivateKey())
</pre>
然後在您的伺服器程式碼中:
privateKeyBytes, _ := hex.DecodeString(privateKeyString) privateKey := ed25519.PrivateKey(privateKeyBytes) lc := &tor.ListenConf{ Key: privateKey, Version3: true, RemotePorts: []int{80} }
以上是golang中的持久隱藏服務的詳細內容。更多資訊請關注PHP中文網其他相關文章!