Project is under development
.NET client for https://github.com/Danny-Dasilva/CycleTLS to spoof TLS/JA3 fingerprints.
.netstandard2.0 supported
After some time I'll release nuget package.
Right now you need npm install cycletls
in any directory and copy dist
from node_modules/cycletls
to directory with your solution.
Potential problem: you need to kill index
or index.exe
manually if your Visual Studio created this as not child process. This problem will be solved soon.
using CycleTLS;
using Microsoft.Extensions.Logging;
var logger = LoggerFactory.Create(b => b.AddConsole()).CreateLogger<CycleTLSClient>();
CycleTLSClient client = new CycleTLSClient(logger);
client.InitializeServerAndClient();
// To find your ja3 you can use https://kawayiyi.com/tls or https://tls.peet.ws/
// Lib uses default Ja3 = "771,4865-4867-4866-49195-49199-52393-52392-49196-49200-49162-49161-49171-49172-51-57-47-53-10,0-23-65281-10-11-35-16-5-51-43-13-45-28-21,29-23-24-25-256-257,0"
// Lib uses default UserAgent = "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.54 Safari/537.36"
//client.DefaultRequestOptions.Ja3 = "";
//client.DefaultRequestOptions.UserAgent = "";
// You can use httpbin.org service for your tests. It just echos your requests.
try
{
CycleTLSRequestOptions options = new CycleTLSRequestOptions()
{
Url = "https://httpbin.org/cookies",
Method = HttpMethod.Get.Method,
Cookies = new List<System.Net.Cookie>()
{
new System.Net.Cookie("cookiename", "cookievalue")
}
//Body = ""
//Proxy = "http://USERNAME:PASSWORD@IP:PORT",
//Headers = new Dictionary<string, string>() { { "authorization", authToken } }
};
CycleTLSResponse response = await client.SendAsync(options);
Console.WriteLine(response.Body);
// Or just:
Console.WriteLine((await client.SendAsync(HttpMethod.Get, "https://kawayiyi.com/tls")).Body);
}
catch (Exception e)
{
Console.WriteLine("Request Failed: " + e.Message);
throw;
}
Options class:
public class CycleTLSRequestOptions
{
public string Url { get; set; };
public string Method { get; set; };
public Dictionary<string, string> Headers { get; set; };
public string Body { get; set; };
public string Ja3 { get; set; };
public string UserAgent { get; set; };
public string Proxy { get; set; };
public List<Cookie> Cookies { get; set; };
public int? Timeout { get; set; };
public bool? DisableRedirect { get; set; };
public List<string> HeaderOrder { get; set; };
public bool? OrderAsProvided { get; set; };
}
Response class:
ublic class CycleTLSResponse
{
public string RequestID { get; set; }
public int Status { get; set; }
public string Body { get; set; }
public Dictionary<string, string> Headers { get; set; }
}
Open pr or issue. Chat me in telegram @mnickw