Jump to content
UBot Underground

Recommended Posts

 

How can you scrape data in H*tmail?  

add item to list

page scrape

 

won't work

 

I was able to scrape a link using 

 

add item to list

scrape attribute

 

... but what I want to do is scrape a password in the email text  :ph34r:

Link to post
Share on other sites

... but what I want to do is scrape a password in the email text  :ph34r:

 

I just scraped a password in Gmail, using $page scrape and after that manipulating (cleaning) the resulting text a little bit:

 

    loop(1) {
        set(#var_Account_Pass, $page scrape("Password", "Login"), "Global")
        set(#var_Account_Pass, $replace(#var_Account_Pass, ":", $nothing), "Global")
        set(#var_Account_Pass, $replace(#var_Account_Pass, "<br>", $nothing), "Global")
        set(#var_Account_Pass, $trim(#var_Account_Pass), "Global")
        set(#var_Account_Pass, $substring(#var_Account_Pass, 0, $find index(#var_Account_Pass, " ")), "Global")
    }

 

In my case the password was actually between the word Password:

and a couple lines below, the Login:

but there were some bits to be cleaned in between.

 

You'll need to adapt to the structure of your emails' text, of course.

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