Jump to content
UBot Underground

Recommended Posts

I have been using the free version of this and seems to be good for setting up many different profiles. The measures that they have taken for canvas protection, WebRTC, time zone setting automatically for proxies, etc to make you profiles more robust appear to be very good.

 

Has any one else used this? and is there any way to automate this with Ubot?

Link to post
Share on other sites

I have heard about multilogin as well but have never used it myself.  Interested to hear if you find a way to use this with ubot

 

Currently I have on my code to change my web browser headers each time it loops.  Is there any other precautions we can take besides changing browser headers and IP?  Can ubot change timezone as well? Or what other things can we change for canvas protection / to make each browser session unique and not possibly detectable as the same browser?

Link to post
Share on other sites

Their is a lot that goes into generating a profile and having it be anonymous for your privacy. Good proxies, referrer, User Agents, WebRTC & Flash leaks, screen resolution, etc.  It looks like the folks that developed Multiloginapp have spent a lot of time and resources to help make profiles so that they are unique and don't "leak" back to the person using them for privacy.

 

This is why I was interested in outsourcing this effort to someone that is specializing in this area. However to manually us this app without Bots is not an option for me. Unfortunately I don't know of a way launch their app/browser in Ubot, say like Exbrowser, then it can be controlled by script?? Maybe using the Windows command or if someone would develop a plugin?? If  a plugin was developed, there most likely would be interest as many folks need to make profiles that can be used with their bots and help protect their privacy. It is easy to get banned or blocked if you do not have a good profile management.

Link to post
Share on other sites

One of the reasons I purchased Ubot Studio is I am not a programmer and so just getting started in this endeavor, so my skills are limited. That is why I was thinking maybe someone would be interested in making a plugin as I perceive there is a need for being able to easily create profiles with a good degree of security against leakage. Just a thought from a newbie, hopefully it may help.

 

I got a reply back from  Multiloginapp and this is what they said:

 

At the moment, there is no integration with Ubot. However, there might be one in the future most definitely.

At the moment, you can use Multiloginapp to run automation and you can accomplish this using Selenium Webdriver. 

Although this solution is a bit raw and may contain some bugs, you are able to connect to Multiloginapp via the local connection and execute Selenium commands within the browser profile.

They way you implement this solution is you put the following code snippet in the beginning of your Selenium code on Java:

// define profile id of the browser profile, which is located in the browser profile settings
String profileId = "xxx";
int mlaClientPort = 35000;
URI url = new URIBuilder("http://127.0.0.1:"+ mlaClientPort + "/api/v1/webdriver").build();
DesiredCapabilities dc = new DesiredCapabilities();
dc.setCapability("multiloginapp-profileId", profileId);
RemoteWebDriver driver = new RemoteWebDriver(url.toURL(), dc);

This is also available on our GitHub page. Also, make sure you have Multiloginapp Agency or Pro plan open at the point of running the code.

 

Here is the URL to the GitHub page;

 

https://github.com/Multiloginapp/multiloginapp-automation-samples/blob/master/src/test/java/com/multiloginappp/automationsamples/BrowserAutomationRemoteWebDriverSample.java

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...