Jump to content
UBot Underground

abbas786

Fellow UBotter
  • Content Count

    451
  • Joined

  • Last visited

  • Days Won

    14

Everything posted by abbas786

  1. Here is the link http://network.ubotstudio.com/forum/index.php/topic/15993-sell-ultimate-ubot-plugin-all-in-one/
  2. Here is the minor fix. define google_captcha(#google_captcha) { set(#ApiKey,"xxxxxxxxx","Global") plugin command("ExBrowser.dll", "ExBrowser Delete All Cookies") set(#ScrapeCallback,$plugin function("ExBrowser.dll", "$ExBrowser Scrape Element Attribute", "<class=\"g-recaptcha\">", "data-callback"),"Global") plugin command("ExBrowser.dll", "ExBrowser Change Attribute", "x://*[@id=\"g-recaptcha-response\"]", "style", $replace($plugin function("ExBrowser.dll", "$ExBrowser Scrape Element Attribute", "x://*[@id=\"g-recaptcha-response\"]", "style"),"display: none;","")) c
  3. Yes your code seems to be OK, no need to worry about the js . Found only one mistake in ur code that u are not setting the value of text box . Please use the code below and test it , let me know if u are still having any issue. define google_captcha(#google_captcha) { set(#ApiKey,"xxxxxxxxx","Global") plugin command("ExBrowser.dll", "ExBrowser Delete All Cookies") set(#ScrapeCallback,$plugin function("ExBrowser.dll", "$ExBrowser Scrape Element Attribute", "<class=\"g-recaptcha\">", "data-callback"),"Global") plugin command("ExBrowser.dll", "ExBrowser Change Attribut
  4. Process is almost same , solve the recaptcha as you are doing in normal cases 1) scrape the callback function set(#ScrapeCallback,$scrape attribute(<class="g-recaptcha">,"data-callback"),"Global") 2) run the javascript run javascript("{#ScrapeCallback}();") Done.
  5. use ui and ask ur customers to enter api key. ui text box("Your 2captcha Api Key",#ApiKey)
  6. try this one set(#position,1,"Global") loop(500) { if($comparison(#position,"=",100) OR $comparison(#position,"=",200) OR $comparison(#position,"=",300) OR $comparison(#position,"=",400) OR $comparison(#position,"=",500)) { then { alert(#position) } else { } } increment(#position) }
  7. Hi, Its available in version 1.6.9 (beta) , Please check ur email Thanks
  8. It will not work on 2captcha.com as they are rejecting this request instead of passing it to a worker. Try on some other website Thanks
  9. Remove the target ='_blank' attribute and try it . If still need any help post the url or your complete code.
  10. To all of ultimate captcha buyers , kindly use the latest version. Kreatus i hope it is the same site we were talking about this morning ?
  11. Please send your code via email , i will see if we can find out a good bypass Thanks
  12. You can try this javascript to enable the submit button after solving the recaptcha and text box filled with recaptcha response run javascript("document.getElementById(\"send_pm\").removeAttribute(\"disabled\");") Hope this helps
  13. Didn't receive any email ! . Please add me on skype . My id is rx2pills Thanks
  14. Hey Hoang Lo, Thanks for your business bud. Please check your email and forward me your hardware id asap. Abbas
  15. It should not be a big issue, as checked this code before pasting here. PM me or send me via skype the account detail and i will check it again . You can add me on skype, my id is rx2pills Thanks Abbas
  16. Here is the solution for click post like for this page comment("Ubot studio internal") navigate("http://m.kin.naver.com/mobile/qna/detail.nhn?d1id=11&dirId=111001&docId=260879724&qb=a29yZWE=&enc=utf8&section=kin&rank=1&search_sort=0&spq=0","Wait") wait for browser event("DOM Ready","") comment("Likes the first simly icon on the page.") click($element offset(<class="u_likeit_button _face off">,0),"Left Click","No") comment("Likes the first icon appears after the click on simily icon") click($element offset(<class="u_likeit_list_button _button off">,0
  17. here is the code for heart emoticon , this page comment("Ubot studio internal") navigate("http://m.blog.naver.com/khjsky14/220920459288","Wait") click(<class="u_likeit_list_btn u_type_img u_none_txt">,"Left Click","No") and for exbrowser comment("Ubot studio exbrowser") plugin command("ExBrowser.dll", "ExBrowser CleanUp Light") plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", $plugin function("ExBrowser.dll", "$ExBrowser Set User Agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36")) plugin comma
  18. Here is an example code of search and scraping bold text . Am using xpath using aymen http plugin, you can use Dan's free xpath plugin . clear list(%BoldWordsList) set(#keyword,"how to make money online","Global") navigate("https://www.google.com.pk/search?q={#keyword}","Wait") wait for browser event("Everything Loaded","") set(#data,$document text,"Global") set(#boldwords,$plugin function("HTTP post.dll", "$xpath parser", #data, "//em", "InnerText", "HTML"),"Global") add list to list(%BoldWordsList,$list from text(#boldwords,$new line),"Delete","Global") Hope rest of the navigation and move
  19. use num parameter in ur search query like https://www.google.com/search?num=100&q=Set+Google+Results you can get maximum 100 results per search
  20. Yes, still working and can solve the 'verify until no image left" types of recaptcha. Thanks
  21. try this one ui drop down("Threads Count","1,2,3,4,5",#thread_count) ui block text("Keywords",#keywords) clear list(%keywords) set(#used_threads,$plugin function("Threads Counter.dll", "threads counter", "reset"),"Global") add list to list(%keywords,$list from text(#keywords,$new line),"Delete","Global") loop($list total(%keywords)) { set(#used_threads,$plugin function("Threads Counter.dll", "threads counter", "increment"),"Global") Search Google($next list item(%keywords)) wait(0.2) loop while($comparison($plugin function("Threads Counter.dll", "threads counter", "read"),">
×
×
  • Create New...