01-31-2012, 02:40 AM
problem solved via php script ^___^
PHP Code:
<?php
echo('COMBINING FILES!');
$in1 = fopen("emaihash.txt", "rb");
$in2 = fopen("hashpass.txt", "rb");
$out = fopen("emailpass.txt", "wb"); //or emailhashpassword.txt
while ($row = trim(fgets($in1)))
{
list($email, $hash) = preg_split("~:~", $row);
list(, $pass) = preg_split("~:~", trim(fgets($in2)));
fwrite($out, $email.":".$pass."\r\n"); //or fwrite($out, $email.":".$hash.":".$pass."\r\n");
}
fclose($in1);
fclose($in2);
fclose($out);
?>