Jump to content
UBot Underground

allcapone1912

Fellow UBotter
  • Content Count

    146
  • Joined

  • Last visited

Everything posted by allcapone1912

  1. have some problem with changing attribute via ExBrowser for hotmail.com sign up page current code: plugin command("ExBrowser.dll", "ExBrowser CleanUp") plugin command("ExBrowser.dll", "ExBrowser Launcher", "Firefox", "", "") plugin command("ExBrowser.dll", "ExBrowser Navigate", "https://signup.live.com/signup") plugin command("ExBrowser.dll", "ExBrowser Wait For Dom Ready", 10) plugin command("ExBrowser.dll", "ExBrowser Type Text (Human Delay)", "x://input[@id=\'MemberName\']", $account data("Username"), 1, 100) plugin command("ExBrowser.dll", "ExBrowser Click", "x://input[@id=\'Password\']
  2. Yes, with Firefox works, thanks for your help Is Firefox better than Chrome for ExBrowser, should i write all my ExBrowser projects with Firefox? or just for hotmail Firefox better?
  3. i decide to upgrade my hotmail account creator to ExBrowser version but i get some problem with captcha and need someone help to solve it can't save screenshoot image in order to solve captcha(scraping src link is not a good idea for hotmail) plugin command("ExBrowser.dll", "ExBrowser Navigate", "https://signup.live.com/signup") wait(5) set(#captcha_file_location,"{$special folder("Application")}\\HEC Captcha.jpg","Local") plugin command("ExBrowser.dll", "ExBrowser Save Screenshot Element", "x://img[@alt=\'Visual Challenge\']", #captcha_file_location) i assume problem is that img on page do
  4. once again, thanks everyone for helping me with my script in past, ive used image recognition and click on it and its work great but for this new game i have to use ExBrowser(without that game will not start at all) and for this plugin i dont find any funtion to click on images my question is: it is possible to click on image(image recognition) with ExBrowser? ...not with simple click(<image="___IMAGE___3___IMAGE___">,"Left Click","No")
  5. Excellent, thanks for your help Your link get what i need
  6. but it is possible to click on image with Exbrowser? i dont find this kind of function for it without exbrowser game dont start
  7. hi I have simple script to check if yahoo username is available My current code set user agent("Android") navigate("https://watchlist.yahoo.com/?.lang=en-US&.intl=us&.username={#status1}","Wait") wait for element(<(id="btn0" OR image="___IMAGE___2___IMAGE___")>,10,"Appear") if($exists(<image="___IMAGE___2___IMAGE___">)) { then { set(#username1,#status1,"Global") } else { set(#username1,"None","Global") } } existing code is work fine, without error but i need the script to work a little faster, so i decided to script it with HTTP post plu
  8. for newest useragent i suggest to look at other site like https://user-agents.me/ on useragentstring.com useragent are very old(last update for Firefox/Chrome 2014 )
  9. thanks guys for your reply "Image Click" should work, i will test that
  10. Just curious if someone found a method to play/use Games in Flash Player currently im am tryind to make an Bot for Forge Of Empire Ive tried different useragent and ExBroser, without any results There is a method to Play/use Online Browser Games in Flash Player or i just waste my time?
  11. thanks for your reply I got your ideea I will make some test when will be available but im sure that will work
  12. just bought ExBrowser plugin, very interesting plugin but i have a problem with new captcha, with 9box(3*3) works fine but i get an error when appear 16 box captcha(4*4) dont understand how to separate workingnumber set(#workingnumber,$substring(#number,#counter,1),"Global") substring is not working because there are number 10,11...16
  13. because you use to click on item with exact name "#item title", and there no such items on your page alert just popup you the item that contain(not exact match) "#item title"
  14. click on Upload a picture and nothing happens(in chrome for example its opening window with file destination)
  15. yes, ive change the title plugin command("WindowsCommands.dll", "set dialog text", "Add a picture", "File name:", "D:\\UBot Studio\\Project\\Email\\Email Creator\\Hotmail\\Images\\1.jpg") plugin command("WindowsCommands.dll", "click dialog button", "Add a picture", "Open") but what i am trying to say is that when i click on Add a picture(manual click with mouse) its not opening any windows and it should be its seem like ubot block it
  16. problem is that its not working ive test "set dialog text" with a simple example and its work navigate("http://examples7x.wicket.apache.org/upload/single?1","Wait") wait(10) click($element offset(<name="fileInput">,0),"Left Click","No") wait(10) plugin command("WindowsCommands.dll", "set dialog text", "Open", "File name:", "blue.png") wait(5) plugin command("WindowsCommands.dll", "click dialog button", "Open", "Open") but with https://account.microsoft.com/profile/edit/picture?ru=https://account.microsoft.com/#/its not working when i click on upload images dont apear any new window
  17. im trying to upload image to hotmail but not working changing file field its seem to me a solution, i read about this on forum but can't get it work link to upload image https://account.microsoft.com/profile/edit/picture?ru=https://account.microsoft.com/#/ change attribute(<click="ng-click">,"value","D:\\UBot Studio\\Project\\Email\\Email Creator\\Hotmail\\Images\\1.jpg") It is possible what i need or i just losing my time?
  18. im agree it will not be easy i need this script to work at least for 70% of urls To make a script that will work for all site it is imposible
  19. thanks for the link, very useful post for my needs
  20. need some idea how to scrape Names from random site list currently i use add list to list(%names found,$scrape attribute(<class="name">,"innertext"),"Delete","Global") but with this one get names only from some site, also, ive tried to use regex to scrape between character > < and works only for some site *NOTE: i need to scrape not from a directory but from a random site list
  21. i tried your regex but still script stop on regex and don't go next
  22. by mistake ive add to local but currently is with General and still not working that's the problem, i can't skip this site because there are a lot of site like this one(were my script stop) and i have to be available to scrape them all
  23. hi, have a problem with my email scraping script very often the script stop at Add list to list and i dont know why navigate("http://www.hksinc.com/","Wait") wait(5) add list to list(%emails,$find regular expression($document text,"(?i)\\b[!#$%&\'*+./0-9=?_`a-z\{|\}~^-]+@[.0-9a-z-]+\\.[a-z]\{2,6\}\\b"),"Delete","Local") script just stop on add list to list and dont go further Problem should be in webste but i dont understand how to pass it
  24. thanks for your reply and for both advice i just bought http plugin and i not totally familiar with this plugin and by mistake use an useless Add to list also, your code for scraping email its great, just hope will be many urls like this one in order to get all possible emails
×
×
  • Create New...