Youtube account checker - how to check?

kimkils

Power Member
Joined
Jan 10, 2009
Messages
667
Reaction score
231
I've lost about 80 accounts in the past 24 hours which is a bitch.

How can i create a piece of software to check if a gmail/youtube is still active without logging in? Anyone know? Landram says he did it..... ?? how :confused:


Also why is everyone using gmails on youtube? i can make accounts using disposable emails and they dont get banned, this must be an easier way of automating creation?
 
Contact me with some bad accounts and I could probably add it to my software "All Things Verified"

Right now it has support for Gmail, Craigslist, and Yahoo (in testing)
*Threaded with proxy support
 
for gmail, you can send email (set a filter to ignore you own testing email)
youtube, maybe you can claw the page
 
this would be a useful software if there was one, I have some hundreds of accounts that need to be checked.
 
for gmail, you can send email (set a filter to ignore you own testing email)
youtube, maybe you can claw the page

the point is that you do it without having to use proxies, a way to check it without actually logging in to the account and linking accounts.

Doh, hoped it'd be easy :)
 
I created an Imacro that will check each and every account without the need to login.

I have searched for a YT account checker and the only one I found was by lamlam, the bad news is it It no longer works. But if you want you can use this code for Imacros and it will verify all your accounts.

First you will need Imacros, its a free fire fox plugin.

Next you will need to create an excel file with your usernames and passwords in it. In row "A" put all of your usernames, and in "B" put your passwords. Then all you have to do is save it as a csv (Comma Delimited) file. Just click on "save as type" and you will see this option. Make sure you save this csv in the Imacros directory under Datasources. It would look something like this:

C:\Documents and Settings\All Users\Documents\iMacros

After you have saved your csv with your account details you can add this code to your Imacros. You need to click the edit button on Imacros and add this:

Code:
VERSION BUILD=6240709 RECORDER=FX
SET !DATASOURCE youtubeaccounts.csv
SET !EXTRACT_TEST_POPUP NO

SET !DATASOURCE_COLUMNS 2
SET !ERRORIGNORE YES

FILEDELETE NAME=[COLOR="Red"]C:\Documents and Settings\All Users\Documents\iMacros[/COLOR]\goodaccounts.csv
TAB T=1
URL GOTO=http://www.youtube.com/user/{{!Col1}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:NoFormName ATTR=ID:comment_entry_box_text CONTENT={{!col1}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:NoFormName ATTR=ID:comment_entry_box_text EXTRACT=TXT

TAG POS=1 TYPE=TEXTAREA FORM=NAME:NoFormName ATTR=ID:comment_entry_box_text CONTENT={{!col2}}
TAG POS=1 TYPE=TEXTAREA FORM=NAME:NoFormName ATTR=ID:comment_entry_box_text EXTRACT=TXT


SAVEAS TYPE=EXTRACT FOLDER=[COLOR="Red"]C:\Documents and Settings\All Users\Documents\iMacros[/COLOR]\Datasources FILE=goodaccounts.csv

Next you need to locate and change the directory In red before you can run it. So find Imacros datasources on your pc and copy & paste the correct directory in this code.

Now you need to be logged into to any account on YT, it doesn't matter which account you use. You just need to be logged in so that you are able to comment. Don't worry you will not be commenting on any of your accounts. We just need the comment field so we can extract the working accounts.

So while logged in run the Imacros code above, just click "Play Loop", set the loop pretty high like "9999" and it will continue to check all your accounts til there is no more.

When Imacros finished checking all of your accounts open up excel and go to the Imacros/Datasource directory and open up " goodaccounts.csv " You will need to show all files to locate it.

So click open and at the bottom you will see "All Excel Files" change it to "Show All Files" and you will see goodaccounts.csv just click on it and open it up.

When you open the file you will see the accounts that are good along with a bunch of #EANF# To remove these form your list just click CTRL+F and remove them. Now you should have a list of all the account that are working and good.

This isn't the best way to make sure your youtube accounts are working, but it's better then nothing. If you need help just ask...
 
Awesome, you've given me a bright idea, i will try and get some software written tomorrow to check accounts in bulk :p
 
DONE IT :p:):cool::):cool:

Tweaked my other software, it now checks for a string such as "user is suspended" and organises the users accordingly.

I'll release it tomorrow ;)

You dont even need to be logged in, it just gets the html for each youtube.com/user/whatever and scans it for strings. i found some of my accounts which said suspended on them, is this what all accounts say? or do some say disabled? if people can check their banned accounts and tell me that would be a big help
 
Last edited:
exactly, thats what the software does, still tweaking it, but it can check an account every second or so, so a big list of accounts wont take long! :)

Also going to make some software to manipulate login details and seperate logins from emails and colons from semi colons etc etc, to make life a little easier ;)
 
Are you doing something like this:
Dim Username as string = Richtextbox1.lines(Index)
Dim wb as new system.net.webclient
Dim Result as string = wb.downloadstring("http://www.youtube.com/" & Username )
If Result.Contains("404 Not Found") then
msgbox(false)
end if

I just wrote that up right here. :P
 
i found some of my accounts which said suspended on them, is this what all accounts say? or do some say disabled? if people can check their banned accounts and tell me that would be a big help

i get with my banned accounts always message "This account is suspended".
but i think its more easier to make youtube checker just by pinging the page and if there is redirect, then its banned, see eg.
http://www.youtube.com/user/mrskinu

anyway looking forward to your updated youtube checker :) thanks in advance

edit:
oh, just recognize that this old thread.
 
Back
Top