My test with Mass Youtuber Viewer Software

Discussion in 'General Marketing' started by newprogramer69, May 19, 2008.

  1. sroberts1994

    sroberts1994 Guest

    Messages:
    76
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #41
    i dont really understand why you would want more youtube plays?!
     
    sroberts1994, May 19, 2008 IP
  2. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #42
    because when you first go on youtube the most viewed are first so 1,000,000 people are seeing your video
     
    newprogramer69, May 19, 2008 IP
  3. thsadmin

    thsadmin Notable Member

    Messages:
    4,889
    Likes Received:
    133
    Best Answers:
    1
    Trophy Points:
    240
    Digital Goods:
    2
    #43
    See the thing is I can get 100 000s of plays to, there's no way to prove that this software is in fact doing it ....

    I have a campaign that has more plays than yours but using real traffic and methods, now - I could easily say "Wow I have found this awesome software" then link to my video - it doesn't mean that my software is sending the plays .... you could be using a totally different method (or buying plays) and just be claiming the software is doing the work.

    Maybe instead of hyping up the software you should hire a good or decent site designer, the sales page looks far to dodgy and needs a work over - I wouldn't be buying the software based on this thread, which is clearly your intention and I certainly wouldn't be buying the software based on that sales page.
     
    thsadmin, May 19, 2008 IP
  4. nicksor

    nicksor Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #44
    free.
    uses perl.
    uses proxies or local ips.
    have fun.
    
    #!/usr/bin/perl
    # youBoob
    
    use LWP::UserAgent;
    use HTTP::Request::Common;
    use Parallel::ForkManager;
    
    my %config;
    our (%iptracking,%proxytrack);
    
    %config = (
    		   video_url => 'http://www.youtube.com/watch?v=IDHERE',  				# Video URL...
    		   use_random_ips => 1, 																							# If you have a server with many IPS set to 1.
    		   use_proxies => 0, 																									# Use Proxy list 1 = yes...
    		   proxy_list =>'proxylist.txt', 																			# List Format  IP:PORT
    		   max_threads => 50,  																								# Max processes
    		   max_views_per_host => '200',																				# Max views per IP / Proxy
    		   ifconfig_path => '/sbin/ifconfig',																	# Path to ifconfig [to find local IPs]
    		   debug => 1,																												# Print out infoz..
    			);
    
    
    	
    main();
    
    sub main {
    		
    		my $pm = new Parallel::ForkManager();
    		$pm = new Parallel::ForkManager($config{max_threads});
    		
    		if ($config{use_random_ips}) { our (@localaddrs) = get_local_ips(); print "Found: $#localaddrs local ips\n" if ($config{debug});}
    		if ($config{use_proxies}) { our (@proxies) = loadfile($config{proxy_list}); print "Loaded: $#proxies proxies from $confg{proxy_list}\n" if ($config{debug});}
    		
    		if ($config{debug}) {
    				print "Configured Options:\n"; 
    				while ( my ($opt,$value) = each (%config)) { print "\t$opt => $value\n";}
    				}
    				
    		# Get busy!
    		
    		if ($config{use_random_ips}) { $doViews = $#localaddrs * $config{max_views_per_host}; }
    		if ($config{use_proxies}) { $doViews = $#proxies * $config{max_views_per_host}; }
    				
    		print "Max Views: $doViews\n";
    		$cView=0;
    		
    		for (1...$doViews) {
    		$cView++;
    		print "Loading view: $cView\n";
    		
    		if ($config{use_random_ips}) { 
    				$localaddr = $localaddrs[int(rand(@localaddrs))];
    				if ($iptracking{$localaddr} >= $config{max_views_per_host}) { $localaddr = $localaddr[int(rand(@localaddrs))]; } 
    				print "Using LocalAddr => $localaddr TimesUsed => $iptracking{$localaddr} \n" if $config{debug};
    				$iptracking{$localaddr}++; 
    				}
    		
    		if ($config{use_proxies}) { 
    		$proxy = $proxies[int(rand(@proxies))];
    		if ($proxytrack{$proxy} >= $config{max_views_per_host}) { $proxy = $proxies[int(rand(@proxies))]; }
    		print "Using Proxy => $proxy TimesUsed => $proxytrack{$proxy} \n" if $config{debug};
    		$proxytrack{$proxy}++; 
    		}
    		my $pid = $pm->start and next;
    				
    		view_video();
    		
    		$pm->finish;
    		
    		}
    		
    		$pm->wait_all_children;
    		
    
    }
    
    
    sub view_video {
    		my $ua = LWP::UserAgent->new;
    		$ua->agent('Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/2006120418 Firefox/2.0.0.1');
    		$ua->timeout('180');
    		
    		if ($config{use_proxies}) {
    				$ua->proxy(['http'], 'http://$proxy');
    		}
    
    		if ($config{use_random_ips}) {
    				@LWP::Protocol::http::EXTRA_SOCK_OPTS = (LocalAddr => $localaddr,Reuse => 1 ); 
    		}
    		
    		my $req = HTTP::Request->new(GET => $config{video_url});
    		$req->content_type('application/x-www-form-urlencoded');
    		my $res = $ua->request($req);
    		
    #		if ($config{debug}) {
    #				if ($res->is_success) {
    #						print $res->content;
    #						}
    #		}
    		
    		if ($res->is_success) {
    		print "OK! Loaded\n";
    		print "Used: $localaddr\n" if ($config{use_random_ips});
    		print "Used: $proxy\n" if ($config{use_proxies});
    		}
    	
    		
    		
    }
    
    
    sub load_file {
    my ($fname) = @_;
    my (@fhin);
    			open(FH,"$fname") || die "can't open $fname: $0";
    				
    				while (<FH>) {
    						s/\n//g;
    						s/\r//g;
    						push(@fhin,$_);
    				}
    				
    			close(FH);
    			return(@fhin);
    }
    
    sub get_local_ips {
    my @iflines = `$config{ifconfig_path}`;
    		for (@iflines) { 
    				if (/\s*inet addr:([\d.]+)/) {
    						push(@local_addrs,$1);
    					}
    				}
    		return @local_addrs;
    }
    Code (markup):
     
    nicksor, May 20, 2008 IP
  5. joelmr

    joelmr Banned

    Messages:
    291
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #45
    Could you try? Maybe with some video no one has seen?
     
    joelmr, May 20, 2008 IP
  6. newbie82

    newbie82 Peon

    Messages:
    223
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #46
    @nicksor what is that code for?
     
    newbie82, May 20, 2008 IP
  7. thsadmin

    thsadmin Notable Member

    Messages:
    4,889
    Likes Received:
    133
    Best Answers:
    1
    Trophy Points:
    240
    Digital Goods:
    2
    #47
    It's a old script to execute a Youtube bot to autoplay your Youtube videos - same as what this guy is selling.
     
    thsadmin, May 20, 2008 IP
  8. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #48
    turn if off at 9:30 at night and doing some affilite product now making $$$
    views 58,279
    Honors for this video (57)
    #7 - Most Discussed (Today) - Howto & Style
    #55 - Most Discussed (This Week) - Howto & Style
    #48 - Most Responded (Today)
    #4 - Most Responded (Today) - Howto & Style
    #10 - Most Responded (This Week) - Howto & Style
    #38 - Most Responded (This Month) - Howto & Style
    #35 - Most Viewed (Today) - Australia
    #10 - Most Viewed (Today) - Canada
    #13 - Most Viewed (Today) - United Kingdom
    #27 - Most Viewed (Today) - Ireland
    #11 - Most Viewed (Today) - India
    #41 - Most Viewed (Today) - New Zealand
    #26 - Most Viewed (Today)
    #62 - Most Viewed (Today) - Mexico
    #53 - Most Viewed (Today) - Netherlands
    #2 - Most Viewed (Today) - Howto & Style - Germany
    #2 - Most Viewed (Today) - Howto & Style - Australia
    #2 - Most Viewed (Today) - Howto & Style - Canada
    #2 - Most Viewed (Today) - Howto & Style - United Kingdom
    #2 - Most Viewed (Today) - Howto & Style - Ireland
    #2 - Most Viewed (Today) - Howto & Style - India
    #2 - Most Viewed (Today) - Howto & Style - New Zealand
    #2 - Most Viewed (Today) - Howto & Style
    #4 - Most Viewed (Today) - Howto & Style - Spain
    #2 - Most Viewed (Today) - Howto & Style - Mexico
    #6 - Most Viewed (Today) - Howto & Style - France
    #3 - Most Viewed (Today) - Howto & Style - Italy
    #13 - Most Viewed (Today) - Howto & Style - Japan
    #30 - Most Viewed (Today) - Howto & Style - South Korea
    #2 - Most Viewed (Today) - Howto & Style - Netherlands
    #11 - Most Viewed (Today) - Howto & Style - Poland
    #4 - Most Viewed (Today) - Howto & Style - Brazil
    #2 - Most Viewed (Today) - Howto & Style - Russia
    #2 - Most Viewed (Today) - Howto & Style - Hong Kong
    #9 - Most Viewed (Today) - Howto & Style - Taiwan
    #21 - Most Viewed (This Week) - Howto & Style - Germany
    #14 - Most Viewed (This Week) - Howto & Style - Australia
    #6 - Most Viewed (This Week) - Howto & Style - Canada
    #8 - Most Viewed (This Week) - Howto & Style - United Kingdom
    #7 - Most Viewed (This Week) - Howto & Style - Ireland
    #7 - Most Viewed (This Week) - Howto & Style - India
    #7 - Most Viewed (This Week) - Howto & Style - New Zealand
    #10 - Most Viewed (This Week) - Howto & Style
    #42 - Most Viewed (This Week) - Howto & Style - Spain
    #18 - Most Viewed (This Week) - Howto & Style - Mexico
    #74 - Most Viewed (This Week) - Howto & Style - France
    #13 - Most Viewed (This Week) - Howto & Style - Italy
    #96 - Most Viewed (This Week) - Howto & Style - Japan
    #71 - Most Viewed (This Week) - Howto & Style - South Korea
    #12 - Most Viewed (This Week) - Howto & Style - Netherlands
    #74 - Most Viewed (This Week) - Howto & Style - Poland
    #32 - Most Viewed (This Week) - Howto & Style - Brazil
    #44 - Most Viewed (This Week) - Howto & Style - Russia
    #46 - Most Viewed (This Week) - Howto & Style - Hong Kong
    #25 - Most Viewed (This Week) - Howto & Style - Taiwan
    #75 - Most Viewed (This Month) - Howto & Style
    #61 - Top Favorites (Today) - Howto & Style
     
    newprogramer69, May 20, 2008 IP
  9. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #49
    I'm using a desktop app. that perl and i;m not selling it but I will take credit if your giving.
     
    newprogramer69, May 20, 2008 IP
  10. pachecus

    pachecus Well-Known Member

    Messages:
    1,841
    Likes Received:
    62
    Best Answers:
    0
    Trophy Points:
    110
    #50
    Can you share the proxy list you are using?
    Thanks.
     
    pachecus, May 20, 2008 IP
  11. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #51
    my proxy list would not be any good if very one was using it, so no
     
    newprogramer69, May 20, 2008 IP
  12. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #52
    Have you tryied this code ? you will be banned in about min if you use that!!
     
    newprogramer69, May 20, 2008 IP
  13. ORZ

    ORZ Well-Known Member

    Messages:
    956
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    135
    #53
    What a fucking pointless thread.
    Buy your self a golden medal and get lost cheater.
     
    ORZ, May 20, 2008 IP
  14. thsadmin

    thsadmin Notable Member

    Messages:
    4,889
    Likes Received:
    133
    Best Answers:
    1
    Trophy Points:
    240
    Digital Goods:
    2
    #54
    Oh so the one that you're selling here is different to that ?




    hahaha too funny - I didn't think that you were selling any ?

    So ummmm what one are you selling then ? Please remember that you're just trialling the script and you purchased it remember ....
     
    thsadmin, May 20, 2008 IP
  15. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #55
    I'm not selling any , you lost there? I'm saying he giving a perl script away that runs on a server and i'm using a desktop app.
     
    newprogramer69, May 20, 2008 IP
  16. Tom Thumb

    Tom Thumb Notable Member

    Messages:
    1,529
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    215
    #56
    Cool.. best of luck!
    ( You should have put some affiliate link for the youtube software in your sig ;) )
     
    Tom Thumb, May 20, 2008 IP
  17. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #57
    thanks , good idea I will see if there a affliate program for it.
     
    newprogramer69, May 20, 2008 IP
  18. joelmr

    joelmr Banned

    Messages:
    291
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #58
    This is going to sound childish and immature, but I have to say it... pwned!
     
    joelmr, May 20, 2008 IP
  19. nicksor

    nicksor Peon

    Messages:
    5
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #59

    It's not an old script, I just wrote it. After testing I apparently missed something as my views didn't go up. My account wasn't banned. Flaming something you don't understand is silly. I guess I know what to expect from this forum .
     
    nicksor, May 20, 2008 IP
  20. newprogramer69

    newprogramer69 Active Member

    Messages:
    130
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #60
    I was not trying to flame to at all, I miss were you said you wrote it .
    thsadmin if you look at the bottom of has sig you see"Youtube Plays 1000 Plays $1 - 100 000 Youtube Views $200 - 100 000+ Youtube Plays $100 - Limited Time" so me doing this test and your script might put him out of some money so he will say all things to raising youtube views won't works and I see that now, even those I proved it does works now he says I must of use some thing else or paid for traffic !! We can see now who the lier is
     
    newprogramer69, May 20, 2008 IP