From 17afb2d68803b9103567eedf26b55174246fe7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nos=D1=82e?= <83548733+Noooste@users.noreply.github.com> Date: Sun, 12 May 2024 13:18:06 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb43c65..ddf2f89 100755 --- a/README.md +++ b/README.md @@ -210,7 +210,7 @@ To modify your ClientHello, you have two options: - The first one is to use the `session.ApplyJA3` method, which takes a JA3 fingerprint and the target browser (chrome, firefox, safari, ...). - The second one is to assign a method to `session.GetClientHelloSpec` that returns TLS configuration. -You can retrieve your JA3 fingerprint there : [https://tls.peet.ws/api/all](https://tls.peet.ws/api/all) +You can retrieve your JA3 fingerprint there : [tls.peet.ws](https://tls.peet.ws/) ```go session := azuretls.NewSession() @@ -238,7 +238,7 @@ fmt.Println(response.StatusCode, string(response.Body)) ### Modify HTTP2 To modify HTTP2, you have to apply the HTTP2 fingerprint to the session. -You can retrieve your HTTP/2 fingerprint there : [https://tls.peet.ws/api/all](https://tls.peet.ws/api/all) +You can retrieve your HTTP/2 fingerprint there : [tls.peet.ws](https://tls.peet.ws/) ```go session := azuretls.NewSession() defer session.Close()