Jump to content
UBot Underground

Recommended Posts

Hi, sorry me again with a question to the tutorial series  ;)

 

I'm now in video 7 and try to confirm an account on one site I've created. My problem is, that the email seems to be encoded in some way and I can't figure out how to click the confirmation link in the email. 

 

Here is the video link:

 

 

Here is a screenshot how's the table is looking in the debugger:  http://screencast.com/t/PFdQahUSJy - As you can see column 2 looks fine, but column 4 and 5 are encoded in some way.

 

In webmail the email just looks fine, as you can see here: http://screencast.com/t/Xx2yt9yCfA

 

Maybe there is something wrong with the code or I need to add a function to transcode the email? Anyway, I hope somebody can help me with that ;) Here is the code of my script:

ui text box("Email Username:", #emailusername)
ui text box("Email Password:", #emailpassword)
ui text box("Email Server:", #emailserver)
clear table(&emails)
connect to mail server("POP3", #emailusername, #emailpassword, #emailserver, 110) {
    create table from emails(&emails)
}
set(#rowcounter, 0, "Global")
loop($table total rows(&emails)) {
    if($contains($table cell(&emails, #rowcounter, 2), "Webnews: Jetzt geht's los!")) {
        then {
            load html("<html>
<body><p>
{$table cell(&emails, #rowcounter, 5)}
</p>
</body>
</html>")
            pause script
        }
        else {
        }
    }
    increment(#rowcounter)
}

Thanks in advance!

Link to post
Share on other sites

Try to connect with a normal POP client and see what happens. 

What email provider do you use? 

 

The email commands are not encrypting anything. So the data you receive is coming from your email account. The question is.. why does that happen?

Your email provider should be able to tell you what they are doing. And as soon as you know what they are using and why, we can look at it and find a solution in ubot.

 

It might be just base64 encoding. You can try if you can decide it here:

http://www.base64encode.org/

 

But I'm just guessing here. Might be something else as well. 

 

Dan

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