get proxy working

This commit is contained in:
2022-04-29 13:38:49 -04:00
parent dfaaf301f2
commit af4b7297b0
6 changed files with 104 additions and 0 deletions

22
exp/proxy/main.go Normal file
View File

@ -0,0 +1,22 @@
package main
import (
"fmt"
"io"
"log"
"go.balki.me/tss/proxy"
)
func main() {
client, err := proxy.GetClient("socks5://unix/run/tor/socks")
res, err := client.Get("https://ip.balki.me")
if err != nil {
log.Panicln(err)
}
data, err := io.ReadAll(res.Body)
if err != nil {
log.Panicln(err)
}
fmt.Printf("status: %v, data: %s\n", res.Status, data)
}