Jump to content
UBot Underground

"we've Detected You're Using An Older Version Of Chrome"


Recommended Posts

They mean search the toolbox, or you can find the "set user agent" setting under the "Settings Commands" on the left side.

 

Try:

set user agent("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36")

Before you navigate to the page.

Link to post
Share on other sites

put that first on your bots and keep track of useragent changes here http://www.whatsmyua.com/

on load("Bot Loaded") {
define navi {
        clear cookies
        set user agent("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36")
        navigate("https://www.google.com/","Wait")
    }
}
navi()
Link to post
Share on other sites

Sorry my mistake define won't work inside on load command.

 code should be

on load("Bot Loaded") {
    navi()
}

and in hidden tab put the define

define navi {
    clear cookies
    set user agent("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.84 Safari/537.36")
    navigate("https://www.google.com/","Wait")
}

that's tested and works.

Sorry again  it worked before coz i had the define in another tab.

Also if u need to keep the cookies and the session data acros deleate Clear cookies command and use it after bot completes the job.

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...