[GET] VBS YouTube View Increaser 1.0

killakem

Regular Member
Joined
Oct 20, 2011
Messages
383
Reaction score
249
While in hospital recovering from my injury's sustained while been assaulted with the Ban Hammer, I started messing around with YouTube views using macros and proxy's.

The Macro method was too unstable and would not loop for more than 100 times due to instability's with macros and JavaScript well that's what my suspicion is.

So I started learning a bit of VBscript and created my first project!! It will clear the temporary internet files & cookies, Use a proxy list in a .txt file, watch your vid for 30 seconds then loop.

The problem I had was it would still wait even when the proxy was down and YT couldn't be contacted, this would use valuable time i could be using for views.

So I added in support for proxy checking!! Well my dirty method anyway.

I have managed 500 a day with this script, using virtual machines to run it this could be scaled out. It would need to be modified to change referrer and user agent should this be used to deliver 5k+ views.

1) Create a txt file with a list of proxy's. One per line in the usual format xxx.xxx.xxx.xxx:8080 name this file input.txt

2) Replace http://www.youtube.com/watch?v=
(Yourvidcode) with your video code.

3) Save the code as yourfilename.vbs and run

Enjoy

Updated and working (The first two lines had moved onto one line)

Code:
Set oReadObj  = CreateObject("Scripting.FileSystemObject")
Set oWriteObj = CreateObject("Scripting.FileSystemObject")
Set oRead = oReadObj.OpenTextFile("input.txt", 1)
set WSHShell = WScript.CreateObject("WScript.Shell")
Set objFSO = CreateObject("Scripting.FileSystemObject")


ytvid = "http://www.youtube.com/watch?v=(Yourvidcode)"


Dim strLine
Dim intLineCounter


intLineCounter = 0


Do Until oRead.AtEndOfStream


strLine = oRead.ReadLine


Set WshShell = CreateObject("WScript.Shell")
WshShell.run "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8"
WshShell.run "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1"
WshShell.run "RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2"


Wscript.sleep (10000)


WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyServer", strline


WSHShell.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ProxyEnable", 1, "REG_DWORD"


Dim strWebsite


strWebsite = "www.youtube.com"


If PingSite( strWebsite ) Then
    Set oIE = CreateObject("InternetExplorer.Application")


Dim oIE


oIE.Visible = 1 ' Hidden


oIE.Navigate ytvid


Do While (oIE.Busy)
Wscript.Sleep 60
Loop


Wscript.Sleep 30000


oIE.Quit
Else
End If


Loop


oRead.Close()  ' Close input file




Function PingSite( myWebsite )
' This function checks if a website is running by sending an HTTP request.
' If the website is up, the function returns True, otherwise it returns False.
' Argument: myWebsite [string] in "www.domain.tld" format, without the
' "http://" prefix.
'
' Written by Rob van der Woude
' http://www.robvanderwoude.com
    Dim intStatus, objHTTP


    Set objHTTP = CreateObject( "WinHttp.WinHttpRequest.5.1" )


    objHTTP.Open "GET", "http://" & myWebsite & "/", False
    objHTTP.SetRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MyApp 1.0; Windows NT 5.1)"


    On Error Resume Next


    objHTTP.Send
    intStatus = objHTTP.Status


    On Error Goto 0


    If intStatus = 200 Then
        PingSite = True
    Else
        PingSite = False
    End If


    Set objHTTP = Nothing
End Function




msgbox "No More Proxy's To Use"

I am working on a private version which changes the referrer and user agent on every view. Possibly looking into getting someone to code me something that uses sockets so it can be used to add a shit load of views.

If you want to join me I will share my work with you and we can get this done together.

P.S Remember this is my first attempt at VBS or any other type of scripting.
 
Last edited:
Has anyone tried this yet?? Let me know how you get on and if you have any problems at all.
 
Do we need Visual Studio or similar apps to run this?
 
Nope works on Windows 7 WITH OUT Visual Studio.

Just save the code in notepad as filename.vbs and run it.........
 
Hmmm thats strange it works fine for me!! I need some sleep I will take a look when I get up!!!
 
no working yet gives me too "compilation error" in window 7.
 
Ok guys, sorry for double-posting but i fix this ! :)

just edit the code.txt and replace your video code like killakem said, save as .vbs and run!

i can't post urls so i attach the file

View attachment code.rar

ps. I add the .txt file in .rar coz, i can't upload .txt files
 
OK i have edited the OP's code and added a random User-Agent string
should be working now just follow OP instructions as above

full credit to OP

i had to zip it and add the zip as i'm not allow to post url's atm

Zip removed due to request, look out for a improved version soon
 
Last edited:
how to use in window xp and does it actually works ?

follow instructions above

1) Create a txt file with a list of proxy's. One per line in the usual format xxx.xxx.xxx.xxx:8080 name this file input.txt

2) Replace
(Yourvidcode) with your video code.

3) Save the code as yourfilename.vbs and run
 
Code:
[URL]http://www.blackhatim.com/f2/%5Bget%5D-vbs-youtube-view-increaser-1-0-a-32162.html[/URL]

So you got this from here?^^
 
Code:
[URL]http://www.blackhatim.com/f2/%5Bget%5D-vbs-youtube-view-increaser-1-0-a-32162.html[/URL]

So you got this from here?^^



Please check the time it posted before saying he grabbed it from that thread. :) I even feel that dude got it from his thread.
 
I spent 2 whole days creating this!! for some prick like you to tell me I copied it from somewhere. get a life
 
Guys,

Please edit your posts and remove your updated versions. We should keep these private!!

bouquet

you are the man I was trying to add that in.
 
I spent 2 whole days creating this!! for some prick like you to tell me I copied it from somewhere. get a life

I have a life sir :) . I just know timestamps vary from board to board depending on what timezone that forum is in if you aren't a registered member. Simple question. Please do not take offense.
 
Back
Top