feat: add proxy layer option for requests

Fixes #56 #21
This commit is contained in:
rramiachraf 2024-05-03 12:45:58 +01:00
parent c940b4a2cd
commit 2c0f43b8f7
15 changed files with 78 additions and 450 deletions

32
utils/request_test.go Normal file
View file

@ -0,0 +1,32 @@
package utils
/*
import (
"encoding/json"
"testing"
)
func TestSendRequest(t *testing.T) {
res, err := SendRequest("https://tls.peet.ws/api/clean")
if err != nil {
t.Fatal(err)
}
defer res.Body.Close()
type fingerprint struct {
JA3 string `json:"ja3"`
}
decoder := json.NewDecoder(res.Body)
var fg fingerprint
if err := decoder.Decode(&fg); err != nil {
t.Fatal(err)
}
if fg.JA3 != JA3 {
t.Fatalf("expected %q, got %q\n", JA3, fg.JA3)
}
}
*/