output file
#5
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);
?>


Messages In This Thread
output file - by cuda - 01-30-2012, 08:35 PM
RE: output file - by chort - 01-30-2012, 08:42 PM
RE: output file - by cuda - 01-30-2012, 08:48 PM
RE: output file - by chort - 01-30-2012, 09:41 PM
RE: output file - by cuda - 01-31-2012, 02:40 AM
RE: output file - by chort - 01-31-2012, 07:31 AM
RE: output file - by atom - 01-31-2012, 11:35 AM