Jump to content
UBot Underground

myubo

Members
  • Content Count

    67
  • Joined

  • Last visited

Posts posted by myubo

  1. 1 minute ago, johnny said:

    We apologize for the wait. Our server has been down, and we have been trying to resolve this issue. We've been tirelessly working on it through the night as well. We do not have an ETA for when our server will be up but will keep you updated.

    We all just wanted to make sure you guys are aware of the situation.  Thank you for the update.  

  2. I keep an open uBot in a virtual machine snapshot just in case this happens...

    Still a big inconvenience when this happens though because my backup is on an external drive I now have to load up.

    PS I even submitted a ticket on there site, I will post back if I hear anything there or on FB.

  3. I get that things go wrong with servers and websites. I just don't understand why they don't post on there website how long its going to take to fix.  Just keep us updated.

    PS I just tried contacting them on FB messager

  4. Hey everyone, I can't figure out how to upload a video on facebook marketplace when placing an ad at: https://www.facebook.com/marketplace/create/item

    I can upload an image just fine using this code:

    change file field(<style=w"*background-position: 0px -62px*">,"C:\\image.jpg")

    BUT very similar code for video doesn't seem to work.  

    This code tries to upload but it never does:

    change file field(<style=w"*background-position: -21px -177px*">,"C:\\video.mov")

    Any help would be much appreciated

    Thanks in advance 🙂

  5. Hey at https://flipboard.com/signup

    After you fill in the: email, name, password and click continue, ReDaptcha button is going to appear and the "Continue" button get grayed out, html code DISABLED

    With Ubot i need to change this:

    <button type="submit" class="button--primary button--block button--base css-bsz50z ea02pfk0" aria-disabled="false" 
            data-vars-button-name="signup__form-submit" data-ga-target="button" disabled="">Continue</button>

    Change it to this (need to remove the "disabled" tag)

    <button type="submit" class="button--primary button--block button--base css-bsz50z ea02pfk0" aria-disabled="false" 
            data-vars-button-name="signup__form-submit" data-ga-target="button"            >Continue</button>

     

  6. I've been trying to get this to work for house now lol and can not figure it out, please help.  I don't see one working example of captcha input on this whole site.

     

    I can get this Advanced Captcha plugin (.dll Advanced Captcha Plugin ATTACHED) to work with 2captcha.com on the demo site at: 

    https://www.google.com/recaptcha/api2/demo?invisible=false

    BUT I can only get it to work because on that demo site the ReCaptcha is wrapped in:

    <form id="recaptcha-demo-form" method="POST"> </form>

    Here is the .ubot code that work on the first above demo site:

    navigate("https://www.google.com/recaptcha/api2/demo?invisible=false","Wait")
    wait(4)
    set(#url,$url,"Global")
    set(#twoCaptchaAPIkey,"XXXXXXXXXXXXXXXXXXXXXXXX","Global")
    set(#sitKey,$trim to between(#captcha_url),"Global")
    set(#GoogleSiteKey,$find regular expression($scrape attribute(<title="recaptcha widget">,"src"),"(?<=anchor\\?k=).*(?=&co=)"),"Global")
    clear list(%Debug)
    add list to list(%Debug,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha", #twoCaptchaAPIkey, #siteKey, #url, "", "", 30, 120, "", "", "", "V2"),"Delete","Global")
    change attribute(<id="g-recaptcha-response">,"value",$list item(%Debug,1))
    comment("__________ to post to ReCaptcha with <form> tag I can use 1 of the 2 below __________")
    run javascript("document.getElementById('recaptcha-demo-form').submit();")
    click(<value="submit">,"Left Click","No")

    Can anyone please please help me get it working on any site where ReCaptcha v2 IS NOT wrapped in a <form></form> tags?

    Like here at this demo site:  https://nopecha.com/demo/recaptcha

    Advanced Captcha.dll

×
×
  • Create New...