feat: spoof JA3 fingerprints

This commit is contained in:
rramiachraf 2024-03-04 22:12:22 +01:00
parent 679f34678c
commit ea1a891ef1
3 changed files with 373 additions and 21 deletions

View file

@ -1,10 +1,12 @@
package handlers
import (
"net"
"net/http"
"net/url"
"time"
"github.com/Danny-Dasilva/CycleTLS/cycletls"
fhttp "github.com/Danny-Dasilva/fhttp"
)
func MustHeaders(next http.Handler) http.Handler {
@ -17,32 +19,23 @@ func MustHeaders(next http.Handler) http.Handler {
})
}
const UA = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36"
const UA = "Mozilla/5.0 (Windows NT 10.0; rv:123.0) Gecko/20100101 Firefox/123.0"
const JA3 = "771,4865-4867-4866-49195-49199-52393-52392-49196-49200-49162-49161-49171-49172-156-157-47-53,0-23-65281-10-11-16-5-34-51-43-13-45-28-65037-41,29-23-24-25-256-257,0"
var client = &http.Client{
Timeout: 20 * time.Second,
Transport: &http.Transport{
DialContext: (&net.Dialer{
Timeout: 15 * time.Second,
KeepAlive: 15 * time.Second,
DualStack: true,
}).DialContext,
},
}
func sendRequest(u string) (*http.Response, error) {
func sendRequest(u string) (*fhttp.Response, error) {
url, err := url.Parse(u)
if err != nil {
return nil, err
}
req := &http.Request{
client := &fhttp.Client{
Transport: cycletls.NewTransport(JA3, UA),
Timeout: 20 * time.Second,
}
req := &fhttp.Request{
Method: http.MethodGet,
URL: url,
Header: map[string][]string{
"Accept-Language": {"en-US"},
"User-Agent": {UA},
},
}
return client.Do(req)