Jump to content
UBot Underground

tinku

Members
  • Content Count

    48
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by tinku

  1. set(#test,$plugin function("HeopasCustom.dll", "$Heopas HTTP Post", "https://doc-partner-services.gingersoftware.com/correction/v1/document?apiKey=56465a24-4a77-4954-8933-bb6156af1316","\{\"text\": \"{#text}\"\}", "", "", "", "Content-Type: text/plain", ""),"Global")

     

    You can use heopas plugin as http post is getting old and aymen has not updated the plugin from a couple of years.It have not option to pass header,you can pass the key words in parameters and headers as your need .You can correlate it with the code i have attached.

    Thanks&Regards

    Tinku Singh 

    • Like 1
  2. Hi

    I get stuck while solving a captcha for site https://appleid.apple.com/account#!&page=create. It's look like a simple captcha  with base 64 image.

    attached in .txt file.

    as it is base 64 so screen shot element and all ubot commands to save or download image is not working for it

    At Last i take a screen shot of the browser and send to 2captcha service but i get an error like captcha unsolvable.

    I tried with ubot inbuilt browser and the captcha is getting solved by ubot inbuilt solve captcha function without any problem but i want to solve it in exbrowser.

    Any help will be appreciated Thanks!!

    I also tried heopas encode/decode and apichai base64 to image but all have same results and not saving the image.

    imageurl.txt

  3. Hi ,

    I am stuck in verifying emails ,i am using inbuilt command of ubot connect to mail server and underneath verify emails but not working.I previously used it for sending mail and was working fine but i am finding it difficult to verify emails .

    Everything looks like ok from my side 

     

    connect to mail server("POP3 With SSL","test@gmail.com","test@123","smtp.gmail.com",995) {
        verify emails("Email verification","https://mailer.somesite.com/wf/click.upn=.*","None")
    }
     
  4. Hi, your ubot browser is not supporting the site , change browser 21 or 49 and check in both browser. If it still not work then you have no choice rather than using exbrowser. And one thing more don't try to- $element offset(<class="icon-f icf-upload">,4) like this search for exact element which is unique like id, innerterxt etc because the class and offset you have selected may change on a new request .Hope it helps you

     

    skype id- live:69f5974a7e15e93e

  5. ui open file("email",#openemail)
    ui open file("password",#openpassword)
    clear list(%email)
    clear list(%pass)
    add list to list(%email,$list from file(#openemail),"Delete","Global")
    add list to list(%pass,$list from file(#openpassword),"Delete","Global")
    set list position(%email,0)
    set list position(%pass,0)
    loop($list total(%pass)) {
        stuffs()
    }

     

     

    Don't try to loop with both list you can increment data with next list item for(email),next list item(pass).Hope it help you .If more clarification required you can ask me on skype , my skype id is :- live:69f5974a7e15e93e

    • Like 1
  6. It's so simple i will provide you two methods to do so.Either you find it by xpath, download heopas xpath plugin or generic xpath plugin both are free.

    1.From xpath:-

    set(#xpath,$plugin function("HeopasCustom.dll", "$Heopas Xpath Parser", $document text, "x://p[@class=\"otp\"]", "InnerText", ""),"Global")
     
    2.From regex:-
    alert($find regular expression($document text,"(?<=<p class=\"otp\">).*(?=<\\/p>)"))
     
    Both will serve you that you want .Hope it helps you
  7. Use this script and download file management plugin its free.

    ui open file("Get Images:",#getimagesfromfolder)
    set(#getimagesfromfolder,$plugin function("File Management.dll", "$directory name", #getimagesfromfolder),"Global")
    clear list(%images)
    add list to list(%images,$get files(#getimagesfromfolder,"Yes"),"Delete","Global")
    set list position(%images,0)

×
×
  • Create New...