SkillAgentSearch skills...

Cclient

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

Install / Use

/learn @x04/Cclient
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

CClient

Fixes TLS and stuff.

Example

package main

import (
    "log"

    "github.com/refraction-networking/utls"
    "github.com/x04/cclient"
)

func main() {
    client, err := cclient.NewClient(tls.HelloChrome_Auto)
    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)
}
View on GitHub
GitHub Stars102
CategoryCustomer
Updated15d ago
Forks59

Languages

Go

Security Score

80/100

Audited on Mar 16, 2026

No findings