Jump to content
UBot Underground

Correct Threading with proxy and useragents


Recommended Posts

Hi,

I really have some problems with what is the correct way of coding things.

 

There is this thread node, then in new browser and it is really unclear to me where to place change proxy and things like that. So i will give you some examples and maybe you can give me some tips or even give me some other ideas how to code threads.

 thread {
        clear cookies
        set(#useragent, $random list item(%useragents), "Local")
        set user agent(#useragent)
        set(#referrer, $random list item(%referers), "Local")
        set referrer(#referrer)
        in new browser {
            set(#proxie, $random list item(%proxys), "Local")
            change proxy(#proxie)
            navigate($random list item(%referers), "Wait")
        }
		        }

Can you please check this out and let me know if i need to change something. Maybe change proxy outside browser? Or place set referrer inside browser?

Link to post
Share on other sites

You should place "set referrer" and "set user agent" inside the browser, since you try to set them for "in new browser" not the main UBot browser. The same goes for "change proxy", so you have that one on the right place

  • Like 1
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...