Jump to content
UBot Underground

Recommended Posts

Hi Everyone,

 

Can anyone suggest me the best option.

 

Im verifying emails, ubot clicks on the email confirmation but the new window doesnt open within ubot properly (i guess its there custom browser) so the link wont verify properly.

 

Can anyone suggest anything?

 

Thanks 

Link to post
Share on other sites

It will work with the Communication Plugin as it provides you with a way to handle popups. Ubots browser itself doesn't support the handling of popups.

Here a small example code how you would do it with the plugin:
    plugin command("Communication.dll""CBrowser Popup Container""title of the window") {
        comment("Executes the commands from here inside the popup window")
        plugin command("Communication.dll""CBrowser Type Text""<id=\"username\">""username")
        plugin command("Communication.dll""CBrowser Type Text""<id=\"password\">""password")
        plugin command("Communication.dll""CBrowser Click""<id=\"submit\">")
    }

Edited by diskwizz
  • Like 1
Link to post
Share on other sites

Rather than click...

 

Typically you would "navigate" to the URL and use the "referrer" to show you came from where the email was sent to.

(it is best anyway to use the referrer but not always required)

 

To get real referrer you need to look at the header response.

 

You can use Firebug or fiddler2.

 

Nothing wrong with a plugin either.

 

CD

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