tls-client-api
tls-client-api copied to clipboard
This is an application which is using gosoline and TLS-Client to run a simple request forwarding service with the option to use specific tls fingerprints which are implemented in TLS-client
Seems that a certain site gets this error constantly. I've enabled redirects as I saw that it was a potential fix for it but to no avail.
Forward Request `/api/forward` ``` var myHeaders = new Headers(); myHeaders.append("x-api-key", "my-auth-key-1"); myHeaders.append("Content-Type", "application/x-www-form-urlencoded"); var raw = JSON.stringify({ "tlsClientIdentifier": "chrome_107", "requestUrl": "https://auth.spectrasonics.net/useracct/login.php", "requestMethod": "POST", "followRedirects": true, "requestBody": "uname=USER&passwd=PASS&g-recaptcha-response=SOLUTION&submitLogin=true&upgrade=&referrerURL=&redirect=yes" }); var requestOptions...