Author Topic: [Python]Youtube view bot  (Read 3842 times)

0 Members and 1 Guest are viewing this topic.

Offline Ragehottie

  • Knight
  • **
  • Posts: 313
  • Cookies: -9
  • Hack to learn, not learn to hack.
    • View Profile
[Python]Youtube view bot
« on: November 24, 2012, 10:05:40 pm »
I was with my cousin recently and he does Youtube and whatever. Then he shows me this guys who has been view botting. I thought it was a pretty hard process, but evidently all you have to do is refresh the page every couple of seconds. I tried it and it works. BUT, it makes my computer slow when I have ~10 browsers auto-refreshing. So I tried to write a simple, multi-threaded program in python. Long story short, it didn't work. Basically, I need to know how to get a full webpage. Using raw sockets preferably.
Blog: rexmckinnon.tumblr.com

Offline techb

  • Soy Sauce Feeler
  • Global Moderator
  • King
  • *
  • Posts: 2350
  • Cookies: 345
  • Aliens do in fact wear hats.
    • View Profile
    • github
Re: [Python]Youtube view bot
« Reply #1 on: November 24, 2012, 10:29:11 pm »
To just view the page, you use Sockets to connect and Read the page.


Now with viewing the video, and I'm assuming to see the ads on the video to get ad views and make money is a diff story. YouTube's API may be in order.


But to answer the question of just viewing the page, connect to it via a raw socket and read the content. Much like you would with the programming/timed challenges on something like SecurityOverrides site.
>>>import this
-----------------------------

Offline proxx

  • Avatarception
  • Global Moderator
  • Titan
  • *
  • Posts: 2803
  • Cookies: 256
  • ФФФ
    • View Profile
Re: [Python]Youtube view bot
« Reply #2 on: November 25, 2012, 01:32:09 pm »
This isnt as easy as it all seems.
Youtube is very serious when it comes to botting and alike.
First of all doing this from one IP address will get you banned etc etc.
Nor will it add more than 300 views , which I believe is the maximum number of views per IP address.

Then comes to next problem; Google keeps track of 'all' the proxies on the web.
These are blacklisted etc etc.
So basically they will know what it is you are doing.

There are more advanced methods though.
« Last Edit: November 25, 2012, 01:32:38 pm by proxx »
Wtf where you thinking with that signature? - Phage.
This was another little experiment *evillaughter - Proxx.
Evilception... - Phage

Offline Ragehottie

  • Knight
  • **
  • Posts: 313
  • Cookies: -9
  • Hack to learn, not learn to hack.
    • View Profile
Re: [Python]Youtube view bot
« Reply #3 on: November 25, 2012, 09:27:33 pm »
Proxies are not the problem. I have like ~10 people to do it. I just wanted to know how the youtube view counter works.


Thanks for you input :D
Blog: rexmckinnon.tumblr.com