Jump to content

macopo

Active Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by macopo

  1. Thx for your post. It was working for me, like it works for you know. I put the login.html in the root-folder (same folder as index.php) and it works fine. My problem is, that I have a few more projects, like FB, GMail and so on. That means, that I have to change in every single file the paths to the right directory. This can take a very long time. Also I have to have many *.html files in my root and would like to have it a little structured. Also there can be some more projects comming. I do not know why, but for some reason the path to the login.html-file cannot be found. It is in the facebook-folder. I thought i could do something like this : $ref = $_SERVER['HTTP_HOST']; if (strpos($ref, 'facebook.com') !== FALSE){ include(/phising/facebook/login.html'); } but apparently this include-command does not work. do you maybe have any idea why?
  2. same here: my index.php $ref = $_SERVER['HTTP_HOST']; if (strpos($ref, 'facebook.com') !== FALSE){ include('/phishing/facebook/login.html') ;} exit; require('error.php'); ?> my phishing page is located in /usb/www/phishing/facebook/ any ideas? have fun
  3. hello forums, i have some trouble with my facebook phishing sample. this is how it works till now: user visits "my" facebook-page enters the credentials, which will be written to a file. user will be redirected to "my" facebook-wrong-password page (which is similar to the original one) user enters his credentials again on "my" page. internal function checks, if credentials from first loginpage and second loginpages matches. If yes: --> inserting the credentials to the "original" (means officially facebook-page). function works fine with googlemail, so i am sure its correct. but if i fill in the credentials automatically to the original facebook page, the following message appears: you should never enter your credentials on pages which not belongs to facebook. or similar (have only a german sentence of that message but should be right) I think facebook proofs the referer. How can i handle the referer-field with php? regards PS: sourcecode will follow....
×
×
  • Create New...