Jump to content
UBot Underground

botmaker7

Fellow UBotter
  • Content Count

    80
  • Joined

  • Last visited

Everything posted by botmaker7

  1. Hey, thanks man I appreciate the help! That got it running and it somewhat works. It skips the first 5 list items for some reason (looking into it). My main concern now is that I'm getting browser crashing / errors: Problem signature: Problem Event Name: BEX Application Name: Browser.exe Application Version: 0.0.0.0 Application Timestamp: 510c4659 Fault Module Name: StackHash_5861 Fault Module Version: 0.0.0.0 Fault Module Timestamp: 00000000 Exception Offset: PCH_AA_FROM_ntdll+0x0003C8AC Exception Code: c0000005 Exception Data: 00000008 OS Version: 6.3.9600.2.0.0.768.101 Lo
  2. The bot loops through a list of URLs and searches each site for a keyword. Then it saves the results in the CSV. Any idea what I'm doing incorrectly? The bot skips some of the first list items, and each thread loads the same URL.. I tried fixing it for hours, but no luck. TAB 1 CODE: on load("Bot Loaded") { navigate("about:blank", "Wait") alert("Please Choose a CSV File to Process") } initialSetup() ui open file("CSV List To Process:", #list) ui button("Click to Save Updated CSV File") { save to file(#list, &url_table) } ui stat monitor("Total Pages to Scan:", #ListMax)
  3. So far I've found: body input button I need to find all the other names so I can hook into em with CSS.. drop down, file selector, check box, multi line text, open file, save file etc. I searched for a long time but couldn't find anything can someone help me out?
  4. What exactly does the RSS plugin do? What kind of things could it be used for? Does it save each RSS entry in the feed as a variable?
  5. List1: google.com newsweek.com caller.com washingtonpost.com yahoo.com facebook.com cleveland.com foxsports.com List2: sportsnet.com google.com yahoo.com thegaurdian.com cleveland mugshot Entries removed: google.com yahoo.com cleveland.com - What's the most efficient way to do this? Increment through list2 and loop some kind of if / regex statement on list one?
  6. As the title suggests I'm running ubot 4 dev edition.. I'd possibly like to upgrade.. How much will it cost me? Thanks
  7. I tried the basics like referrer, user agent, setting browser properties like screen size etc. I'm getting blocked from logging in to a site I want to automate (just freezes on white screen on login).. can't share the URL in public. If I login from a regular browser it works fine. What are the best methods to get around anti-bot detection? I think it's detecting selenium itself?
  8. I have a list of thousands of urls I'm looping through and doing checks.. How do I skip a URL if it doesn't load? The loop is getting stuck on this one: http://uk.businessinsider.com/sam-clovis-withdraws-agriculture-papadopoulos-russia-mueller-trump-2017-11 I want to do something like if url doesn't load navigate to next list item Ubot v4.2.12
  9. Thanks! Works like a charm If I were to write that regex myself it would have taken me 3 days to figure out lol. Really appreciate it!
  10. Hey guys, I'm not able to figure out how to solve this problem I'm having.. I have a list of hundreds of URLs Example: http://dailycaller.com/2017/11/02/trump-pick-for-top-agriculture-post-withdraws-name-following-russia-probe-revelations/ https://www.newsmax.com/politics/jeff-sessions-vladimir-putin-court-filings-donald-trump/2017/11/02/id/823762 https://www.wthr.com/article/ship-to-attempt-raising-russian-chopper-wreckage-in-arctic http://www.motherjones.com/kevin-drum/2017/11/a-little-bit-of-pushback-on-the-jeff-sessions-story/ https://pjmedia.com/trending/nunes-dems-suddenly-intere
  11. I tried searching but couldn't find an answer to this basic question.. How can I import the code from "1" to run in "Main"?
  12. To clarify I DO NOT want to search what displays on the webpage. I want to search within the source code and make actions based on the results.
  13. Would be amazing if ubot could also be able to change system fonts and plugins too, those are the other identifiers. Maybe just have 5-10 of the most common setups we could randomly cycle through. https://panopticlick.eff.org/ Check this link out for how you're identified through your browser.
  14. Cool I've never used that command. Thanks guys!!
  15. hey man! long time no talk!! what you recommended doesn't seem to fix it for me. I added the line: wait for element($element offset(<login link>, 0), "", "Appear") right under the navigate command but it still alerts "no"
  16. This is so basic it seems it should work but it doesn't: set user agent("Android") navigate("http://www.google.com/alerts", "Wait") if($comparison($search page("Sign In"), "=", $true)) { then { alert("yes") } else { alert("no") } } When I CTRL + F in Firefox it finds 'Sign In' no problem but Ubot doesn't seem to. Any ideas?
  17. Found a pretty nice tool to edit keyword lists called Good Keywords v3 Instead of using regex I'm just loading the raw list into the program then doing: Copy List into KW Manager Filter -> Anywhere -> url?q= -> Right Click -> Copy Selected -> Paste In New List Delete Duplicates Remove Substrings -> At Start -> <https://www.google.com/url?q= Remove Substrings -> At End -> ">" Remove Substrings -> &cd= Remove Substrings -> &usg= Append -> At End -> Random string It's not perfect but at least it cleans up and modifies the URLs so I c
  18. Thanks for the help guys! Here's where I'm at so far: clear table(&new) connect to mail server("IMAP With SSL", "ENTER GMAIL USERNAME", "ENTER GMAIL PW", "imap.gmail.com", 993) { create table from emails(&new) } set(#count, 0, "Global") clear list(%processing) set list position(%processing, 0) loop($table total rows(&new)) { add item to list(%processing, $table cell(&new, #count, 4), "Delete", "Global") increment(#count) } set(#processing, $list item(%processing, 1), "Global") set(#processing, $replace(#processing, " ", $nothing), "Global") set(#processing, $repl
  19. Right on, thanks Dan! That solves that problem. Could you explain how I can go about scraping the URL from the table? In my bot I do table from emails and the link is in column 4 with a bunch of text and other links.
  20. Basically what I'm trying to do is scrape the links from Google Alerts. Here's an example: Sentence enhancement for any "adult male [who assaults] a female" Washington Post Instead, this provision makes any assault committed by a man upon a woman an aggravated assault regardless of the physical differences between ... <https://www.google.com/url?q=http://www.washingtonpost.com/news/volokh-conspiracy/wp/2014/03/11/sentence-enhancement-for-any-adult-male-who-assaults-a-female/&ct=ga&cd=CAEYACoUMTY3MDQ3NDE2NTcyMjkwMDY3MTUyGTc3NjdlMmU1NTAyNDlhYjM6Y2E6ZW46Q0E&usg=AFQjCNG5k-c5sU86
  21. I need to be able to change the drop down boxes here: http://www.google.com/alerts Any idea how I can do that? None of the regular commands work.
  22. Ahh whoops. Thanks for pointing that out! Any idea about how to change the drop down? I'm able to use the click command on it with the user agent android but then I get stuck.
×
×
  • Create New...