@ozsuakin Sorry, but I don't have experience with either of these tools. You can try Mobilehop proxies. They have TCP fingerprint spoofing (so TCP, not TLS, but it might work in your use case).
Failed to get proxy ip Feature
-
Some of the proxy providers block ip.bablosoft.com
This prevents us from using bablosoft as the ipaddress is easily detectable via Web RTC
The way we handle this in code is that we disable detectExternalIP and other properties.
let babloSettings = {
detectExternalIP: !isBablosoftDomainBlocked,
changeTimezone: !isBablosoftDomainBlocked,
changeGeolocation: !isBablosoftDomainBlocked,
};We wish to ask for a feature where we can pass it property to use our own ip server such as this
"customIPServer": "ip.myserver.com"This way we can use all the great features
let babloSettings = {
customIPServer: ip.myserver.com,
detectExternalIP: true,
changeTimezone: true,
changeGeolocation: true
};Thank you
-
@wyifi Learn about the new version
https://community.bablosoft.com/topic/28687/browserautomationstudio-27-6-1-has-been-released -
@BAS-Viet-Nam thank you for your reply. I am going to look into it.