Jump to content
UBot Underground

hellartpl@gmail.com

Members
  • Content Count

    10
  • Joined

  • Last visited

Posts posted by hellartpl@gmail.com

  1. Welcome . I have a problem with the call back function .. I try to understand this on the example of your script above but I do not go. Could you put a full script with the completed call back function? I suspect that it will not be useful for one person to understand this example from this web page https://www.ibilik.my/register

     

    ps:If anyone is interested, I can also pay for making a script for the selected page (only the recaptchy invisible + solved / callback script)

     

    edit:I have understood this a little, however, I have a problem with finding the data-callback function (it is not in the place where it is used)

  2. Hello . I would like to replace $ account data with my data in a csv or txt file. I have a problem with obtaining such an effect

    loop 0 = data in txt or csv
    name1 (row 0, col 0)
    pass1 (row 0, col 1)
    loop 1.
    name2 (row 1, col 0)
    pass2 (row 1, col 1)
    and so on (number of loops)

    unfortunately, every way I tried it turned out to be wrong

    txt file (test1.txt)
    name1, password1
    name2, password2
    NAME3, password3
    NAME4, password4
    NAME5, password5
    name6, password6

     

    please help. THX

    ui drop down("Threads",1,#threadCount)
    ui text box("Number of Accounts",#loops)
    clear list(%accounts)
    clear list(%accountinformation)
    create table from file("D:\\test1.txt",&my table)
    set(#usedThreads,0,"Global")
    loop(#loops) {
        reset account("Any")
        set(#username,$account data("Username"),"Global")
        set(#password,$account data("Password"),"Global")
        add item to list(%accountinformation,"{#username}:{#password}","Don\'t Delete","Global")
    }
    add list to list(%my proxies,$list from file("D:\\prox.txt"),"Don\'t Delete","Global")
    save to file("{$special folder("Application")}\\account.csv",%accountinformation)
    loop(#loops) {
        loop while($comparison(#usedThreads,">= Greater than or equal to",#threadCount)) {
            wait(1)
        }
        clear list(%account)
        add list to list(%account,$list from text($next list item(%accountinformation),":"),"Delete","Global")
        increment(#usedThreads)
        CreateAccount($list item(%account,0), $list item(%account,1))
        wait(0.1)
    }
    loop while($comparison(#usedThreads,"> Greater than",0)) {
        wait(0.1)
    }
    alert("Finished")
    define CreateAccount(#_username, #_password) {
        thread {
            change proxy($next list item(%my proxies))
            navigate("http://www.ubotstudio.com/playground/simple-form","Wait")
            wait(7)
            wait for browser event("Everything Loaded","")
            type text(<username field>,#_username,"Standard")
            type text(<password field>,#_password,"Standard")
            add item to list(%accounts,"{#_username}:{#_password}","Don\'t Delete","Global")
            click(<value="Submit">,"Left Click","No")
            clear cookies
            decrement(#usedThreads)
        }
    }
    
    
  3. Hello . Please help . How can I make this uboot click on this link? (It's all about the verification link sent to the email address )

     

    it's all about this link so uboot clicks on it. Below is the source code from the email.

    http://click.txn-email.helladt.com/?qs=59c0f1fd70424e71c424e19d9bc48b9e76a33115c9bcf0cbd1f68a805b7f9529c62e412479092e85ee70830d21a127b155683ff1d98fc2ab272785db2853d3ec
    
    
    <div class="rcmBody"  style="background-color: #ffffff; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; width: 100% !important; -webkit-text-size-adjust: none; font-family: Arial, Helvetica, sans-serif">
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
      <tr>
        <td bgcolor="#ffffff"><div align="center"> 
            
            <table width="600" border="0" cellspacing="0" cellpadding="0" class="resizetofull minWFix" style="min-width: 600px">
              <tbody>
                
                <tr>
                  <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tbody>
                        <tr>
                          <td valign="top" align="center" style="padding: 40px 20px 0px 20px"><img src="program/resources/blocked.gif" width="438" height="106" alt="PlayStation" style="display: block" border="0" class="resizetofull" /></td>
                        </tr>
                      </tbody>
                    </table></td>
                </tr>
                 
                
                <tr>
                  <td valign="top" align="left">
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                      <tbody>
                        
                        <tr>
                          <td valign="top" align="center" style="font-family: Helvetica, sans-serif; font-size: 13px; line-height: 150%; color: #505050; padding: 40px 20px 0px 20px">Thanks
    </td>
                        </tr>
                       <tr>
                          <td valign="top" align="center" style="font-family: Helvetica, sans-serif; font-size: 13px; line-height: 150%; color: #505050; padding: 20px 0px 20px 0px">
    
    <table width="150" border="0" cellspacing="0" cellpadding="0">
                              <tbody>
                                <tr>
                                  <td align="center" height="40" style="font-family: Helvetica, sans-serif; font-size: 18px; color: #ffffff" bgcolor="#5887f5"><a href="http://click.txn-email.helladt.com/?qs=59c0f1fd70424e71c424e19d9bc48b9e76a33115c9bcf0cbd1f68a805b7f9529c62e412479092e85ee70830d21a127b155683ff1d98fc2ab272785db2853d3ec" style="font-family: Helvetica, sans-serif; font-size: 18px; color: #ffffff; text-decoration: none" target="_blank" rel="noreferrer">Verifi Now</a></td>
                                </tr>
                              </tbody>
                            </table>
    
    
    </td>
    
×
×
  • Create New...