Omegle Bot

Joined
Feb 17, 2011
Messages
240
Reaction score
166
omegleAssassin.png


This is a bot i have been working on,The interaction with Omegle is done with HttpWebRequest (C#).Once there is a captcha detected,The webbrowser resets my ip (via modem) Then continues spamming,100% automated.The smaller frames to the right are pretty much for testing,I use those to act like actual threads to see how long it takes to get a captcha from omegle.The Master client actually uses threading but right now it just uses 1 (but capable of multiple)

Let me know what you guys think so far,Also any ideas you might have (features,etc)
 
Last edited:
Are you actually pulling traffic from Omegle? Converts?
It took me about a day and a half to get this bot where it is,I have had about 25 threads running at once non-stop for about 2 hours and the traffic is pretty good.The landing page i have for it is nice too,So far 1 conversion.
 
hey man congrats on ur bot.
i m also tyring o code similar bot in vb. the problem is i cant find a solution to click 'send' button after puttin text in chatbox as there's no id for that button. the only solution i have is to use sendkey{enter} .and therefore i cant run the bot in minimized mode or on vps.have u been able to find solution for it?
 
hey man congrats on ur bot.
i m also tyring o code similar bot in vb. the problem is i cant find a solution to click 'send' button after puttin text in chatbox as there's no id for that button. the only solution i have is to use sendkey{enter} .and therefore i cant run the bot in minimized mode or on vps.have u been able to find solution for it?
I would def not use a webbrowser because the best you can do with that is run multiple instances (but like you said using sendkeys will be very buggy)

Solution : Loop through all elements on page,Within your foreach loop add an if statement :
Code:
if (item.innerhtml.contains("UNIQUE HTML FOR ELEMENT"))
{
    item.invokemember("click");
}
 
When is this going to be released? I'm desperately looking for an Omegle bot.
Well its pretty solid right now but i would need to add the decaptcha API (i can do this about 5 minutes) or code for your personal modem for the captcha issue.Also i just need to add a drop down menu so you can select how many threads and wrap that up with some error handling.

My question to the community is : Would this be worth selling? (If i do i would only sell limited copies,So its not too over saturated) What are you alls thoughts?
 
You should implement Death By Captcha as well as Decaptcha (just a suggestion as these are the guys I use) and also... do you think implementing rotating proxies would be sufficient enough to fend off the captcha prompts?
 
You should implement Death By Captcha as well as Decaptcha (just a suggestion as these are the guys I use) and also... do you think implementing rotating proxies would be sufficient enough to fend off the captcha prompts?
I think Proxies might work,But for this project i wanted to mass scale it (25-100 active convos at once (for now)) and the best solution is the resetting ip via modem,Because its free and with 25+ connections using deceptcha might get a bit expensive if you have this running 24/7,But the downside to the modem is obviously if i sell it i would have to code a separate module for each modem.
 
Cool Deal. Lol... its funny because I was showing omegle to people around the office yesterday. We were mostly just trolling through :D
 
Congrats on your bot!
Looking also for an omegle bot,
but need the camerathing on it.
At moment i use 4x omegle at the same time, with manycam :)
 
For sure. Spend enough time on there looking at cock and seeing the sames ones, and even someone crappy at math starts trying to figure the odds.
 
For sure. Spend enough time on there looking at cock and seeing the sames ones, and even someone crappy at math starts trying to figure the odds.
Ok....It took me about 10 minutes of capturing and saving packets from the text based chat to get this bot started...You mad brah? LOL
 
I have been looking everywhere for this. what you should do is relese a free one that inserts one of your links every 5 links or somthing, so that its a win win scenario?

Pm me to discuss further.
 
I tried htmlunit with javascript but it messes up all the time.
Are they still developing it?
 
Back
Top