Jump to content
UBot Underground

gavner25

Members
  • Content Count

    53
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by gavner25

  1. I have a bot that works fine in ubot before i compile it. However, when i compile it, the bot does not scraping the emails from each page. It just loops through each page with no results. See my code here. What could be the issue? Should i try another version of Ubot? I am use 5.9.37

     

    set(#website,"behance.net","Global")
    clear list(%behanceurls)
    add list to list(%behanceurls,$list from file("C:\\Users\\gavner\\Dropbox\\Ubot\\scraping\\behance url list found from 80000.txt"),"Delete","Global")
    plugin command("ExBrowser.dll", "ExBrowser Launcher", "Firefox", "", "")
    wait(2)
    loop($list total(%behanceurls)) {
        plugin command("ExBrowser.dll", "ExBrowser Navigate", $list item(%behanceurls,1))
        wait(1)
        if($contains($document text,"@")) {
            then {
                clear list(%emailforcontact)
                add list to list(%emailforcontact,$find regular expression($plugin function("ExBrowser.dll", "$ExBrowser Document Text"),"([a-zA-Z0-9._-]+@([a-zA-Z0-9_-]+\\.)+[a-zA-Z0-9_-]+)"),"Delete","Global")
                wait(1)
                append to file("C:\\Users\\gavner\\Documents\\scraping\\{#website}.txt","{$new line}{%emailforcontact}","End")
            }
            else {
            }
        }
        remove from list(%behanceurls,1)
        wait(1)
        save to file("C:\\Users\\gavner\\Documents\\scraping\\behance url list found from 80000.txt",%behanceurls)
    }
     
  2.  

    Hello I've just noticed that "get files" command isn't listed in Standard version so i've noticed a workaround.Dont know if its already posted but I've just tested it and its working like a charm.

    Create a batch file with the following line:

     

    "dir /s /b  __folderhere__"   Be careful with the spaces!

     

    For example i'm using it to get filenames+directory of pictures I downloaded from pinterest:

     

    "dir /s /b  c:\users\__username__\desktop\pinterest"

     

    The above line gets results like the following:

     

    c:\users\__username__\desktop\pinterest\0653abdf6013c822a97187c612f2a518.jpg
    c:\users\__username__\desktop\pinterest\0ed795476a4df6df2aa11f7acd77034a.jpg
    c:\users\__username__\desktop\pinterest\142dff6563856a954fd9f0db7d10655d.jpg
     
    The next step is to execute the batch and get the results in a variable. Im using UbotDev's plugin which is super cool and its free.
     
    set(#shell, $plugin function("Advanced Shell.dll", "$shell batch hidden", "{$special folder("Desktop")}/batch.bat"), "Global")  My batch file is named "batch.bat" and its located on the desktop.
     
    Thats it!
     
    Note: if you are using Windows XP you should replace the batch file so it looks like this:
     
     
    "dir /s /b  c:\Documents and Settings\__username__\desktop\pinterest" thats if you want to use a folder located on your desktop.
     
    Note2: In the attachment you can see a slight problem which is the first line containing the command, but this can be fixed easly.
     
    UbotDev's super cool plugin:
     
    Have fun.

     

    Hi, any chance you could send me the plugin mentioned as the developers site is down :)???

  3. When i click 'Learn more' under that message it says 

     

    To help protect your account, Google doesn’t let you sign in from some browsers. Google might stop sign-ins from browsers that:

    • Don’t support JavaScript or have Javascript turned off.
    • Have unsecure or unsupported extensions added.
    • Use automation testing frameworks.
    • Are embedded in a different application.

    So clearly Exbrowser is using automation test software, so how can i get round this?? everything was working before tonight.

  4. Hi Abbas,

     

    We spoke on skype a few days ago and i shared everything with teamviewer. I have been trying to get this working for 1 site only, which is tumblr. I have no other use for this plugin and i followed your instructions. It seems to work fine as you see in the link below, but then i get asked to try the captcha again, and again and again everytime. Each time its costing me money with 2 captcha. See link below.

     

    https://www.loom.com/share/79999ab79f7148929b2b653132d33b2a

     

    Please help

     

    Gavin

  5. I bought this plugin and im desperate to get it working to solve the tumblr recaptcha on account signup. I tried using the example code for exbrowser but i constantly get the same error. I even tried the example code on the google test site and i still get errors. Please see the link provided and tell me how i am supposed to set this up properly. I am using the 2captcha api. I sent an email to support@...but no response. The skype id rx2pills cannot be found on skype contacts either. Please help!!

     

    https://www.loom.com/share/4de901b67ab24a488d9674b42ce8b1d5

×
×
  • Create New...