Account Checker?!

12/22/2013 13:35 LEL0UCH'#1
Servus Community,
wollte euch fragen ob ihr wisst wie man einen account checker schreibt,
Es soll die Accounts aus einer .TXT lesen können und checken.

Das sind die Inputs:
<input class="custom-log" type="text" size="15" name="account"/>
<input class="custom-log" type="password" size="15" name="password"/>
12/22/2013 14:04 tolio#2
Code:
file.readalllines
for each line
   if webrequestobj.httppost(url,"text=" & text & "&password=" & password).contains("eingeloggt") then
      msgbox "cool"
   else
      msgbox "nicht cool"
   end if
next