Skip to content
 
 

Latest commit

 

History

35 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CClient

Fixes TLS and stuff. Uses the yawning utls fork instead of the original refraction-networking one.

Example

package main

import (
    "log"

    tls "github.com/Titanium-ctrl/utls"
    "github.com/Titanium-ctrl/cclient"
)

func main() {
    client, err := cclient.NewClient(tls.HelloChrome_Auto,"",true,6)
    if err != nil {
        log.Fatal(err)
    }

    resp, err := client.Get("https://www.google.com/")
    if err != nil {
        log.Fatal(err)
    }
    resp.Body.Close()

    log.Println(resp.Status)
}

Notes

If you experience any issues with the gitlab.com/yawning/utls import during installation, please try: go get gitlab.com/yawning/utls. Some path issue with go and gitlab ¯\_(ツ)_/¯

The go.mod issue with git etc. was fixed by using my fork of the project with a change to the go.mod file instead of yawning's fork

About

Drop in HTTP client that allows for spoofing TLS fingerprint with uTLS and adds support for proxying TLS connections.

Resources

Stars

4 stars

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages