How do they know this?

Thread Tools
 
Search this Thread
 
Old Feb 10, 2008 | 08:25 PM
  #1  
ranger81's Avatar
Thread Starter
|
Suspended
Joined: Dec 2001
Posts: 161
Likes: 0
From: not of this earth
How do they know this?

Every so often I'll be browsing a forum of some kind and I'll be reading a thread and at the bottom of a post will be a little figure holding up a sign that says 'your IP address is blah-blah you are using Windows XP and your browser is Opera, I can see you!' How do they know this?
 
Reply
Old Feb 10, 2008 | 08:34 PM
  #2  
JBMX928's Avatar
Graphics Contributor
Joined: Sep 2006
Posts: 2,367
Likes: 0
From: Buffalo NY
big brother.
 
Reply
Old Feb 10, 2008 | 08:35 PM
  #3  
Larry227's Avatar
Senior Member
Joined: Jul 2004
Posts: 183
Likes: 0
From: Somewhere in the Kootenays
it's magic
 
Reply
Old Feb 10, 2008 | 08:50 PM
  #4  
OrdnanceCorps's Avatar
Senior Member
Joined: May 2007
Posts: 145
Likes: 1
From: Statesboro, Ga.
It depends on the scripting language. But you browser it set to give off its type for compatibility issues. At times it also gives away your OS. Your ip is also public, and if your ISP has reverse dns, its pretty easy to grab with certain script whether PHP or ASP or Perl, it's nothing completely hard. By getting the right browser for instance would allow a webmaster to display screen resolution, colors, layout sizes, and to use javascript or html 4 or etc.

If you would like to keep this from happening, depending on browser its pretty easy. Mostly you can edit a registry key. Either nulling it falsing it or changing the value of it.

<?php
//
// SourceForge: Breaking Down the Barriers to Open Source Development
// Copyright 1999-2000 (c) The SourceForge Crew
// http://sourceforge.net
//
// $Id: tim20000821.php3,v 1.2 2001/05/22 19:22:47 tim Exp $

unset ($BROWSER_AGENT);
unset ($BROWSER_VER);
unset ($BROWSER_PLATFORM);

function browser_get_agent () {
global $BROWSER_AGENT;
return $BROWSER_AGENT;
}

function browser_get_version() {
global $BROWSER_VER;
return $BROWSER_VER;
}

function browser_get_platform() {
global $BROWSER_PLATFORM;
return $BROWSER_PLATFORM;
}

function browser_is_mac() {
if (browser_get_platform()=='Mac') {
return true;
} else {
return false;
}
}

function browser_is_windows() {
if (browser_get_platform()=='Win') {
return true;
} else {
return false;
}
}

function browser_is_ie() {
if (browser_get_agent()=='IE') {
return true;
} else {
return false;
}
}

function browser_is_netscape() {
if (browser_get_agent()=='MOZILLA') {
return true;
} else {
return false;
}
}


/*
Determine browser and version
*/


if (ereg( 'MSIE ([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version)) {
$BROWSER_VER=$log_version[1];
$BROWSER_AGENT='IE';
} elseif (ereg( 'Opera ([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version)) {
$BROWSER_VER=$log_version[1];
$BROWSER_AGENT='OPERA';
} elseif (ereg( 'Mozilla/([0-9].[0-9]{1,2})',$HTTP_USER_AGENT,$log_version)) {
$BROWSER_VER=$log_version[1];
$BROWSER_AGENT='MOZILLA';
} else {
$BROWSER_VER=0;
$BROWSER_AGENT='OTHER';
}

/*
Determine platform
*/

if (strstr($HTTP_USER_AGENT,'Win')) {
$BROWSER_PLATFORM='Win';
} else if (strstr($HTTP_USER_AGENT,'Mac')) {
$BROWSER_PLATFORM='Mac';
} else if (strstr($HTTP_USER_AGENT,'Linux')) {
$BROWSER_PLATFORM='Linux';
} else if (strstr($HTTP_USER_AGENT,'Unix')) {
$BROWSER_PLATFORM='Unix';
} else {
$BROWSER_PLATFORM='Other';
}

/*
//debug code
echo "\n\nAgent: $HTTP_USER_AGENT";
echo "\nIE: ".browser_is_ie();
echo "\nMac: ".browser_is_mac();
echo "\nWindows: ".browser_is_windows();
echo "\nPlatform: ".browser_get_platform();
echo "\nVersion: ".browser_get_version();
echo "\nAgent: ".browser_get_agent();
*/

?>
 

Last edited by OrdnanceCorps; Feb 10, 2008 at 08:53 PM.
Reply
Old Feb 10, 2008 | 09:05 PM
  #5  
BlueFlareside's Avatar
Senior Member
Joined: Jan 2000
Posts: 2,075
Likes: 1
From: Central Florida
You mean this?



Go to http://www.ipnow.org/
 
Reply
Old Feb 10, 2008 | 09:05 PM
  #6  
Ftruck05's Avatar
Suspended
Joined: Sep 2006
Posts: 1,200
Likes: 0
From: Algonquin Il
Originally Posted by OrdnanceCorps
It depends on the scripting language. But you browser it set to give off its type for compatibility issues. At times it also gives away your OS. Your ip is also public, and if your ISP has reverse dns, its pretty easy to grab with certain script whether PHP or ASP or Perl, it's nothing completely hard. By getting the right browser for instance would allow a webmaster to display screen resolution, colors, layout sizes, and to use javascript or html 4 or etc.

If you would like to keep this from happening, depending on browser its pretty easy. Mostly you can edit a registry key. Either nulling it falsing it or changing the value of it.


WTF???? Are you smart or something?
 
Reply
Old Feb 10, 2008 | 09:08 PM
  #7  
JBMX928's Avatar
Graphics Contributor
Joined: Sep 2006
Posts: 2,367
Likes: 0
From: Buffalo NY
Originally Posted by BlueFlareside
You mean this?



Go to http://www.ipnow.org/
hehe, i tried posting one from another site in my first reply, but the site was censored by f150online
 
Reply

Trending Topics

Old Feb 10, 2008 | 09:56 PM
  #8  
johnnyd2723's Avatar
Senior Member
15 Year Member
Joined: Mar 2007
Posts: 2,869
Likes: 0
From: N.E. Ohio
Check the conglomeret valve also. Sometimes the widget arm can get hung up.
 
Reply
Old Feb 10, 2008 | 10:26 PM
  #9  
OrdnanceCorps's Avatar
Senior Member
Joined: May 2007
Posts: 145
Likes: 1
From: Statesboro, Ga.
I didnt go and edit all the reg values due to an overlap IE7 does for the 5.0 specifications. However, to show it is possible.

 
Reply
Old Feb 10, 2008 | 10:28 PM
  #10  
johnnyd2723's Avatar
Senior Member
15 Year Member
Joined: Mar 2007
Posts: 2,869
Likes: 0
From: N.E. Ohio
Exactly
 
Reply
Old Feb 10, 2008 | 10:30 PM
  #11  
thenewbreed's Avatar
Senior Member
Joined: Jun 2006
Posts: 1,605
Likes: 0
From: SE TX
 

Last edited by thenewbreed; Feb 10, 2008 at 10:34 PM.
Reply
Old Feb 10, 2008 | 10:36 PM
  #12  
thenewbreed's Avatar
Senior Member
Joined: Jun 2006
Posts: 1,605
Likes: 0
From: SE TX
its the man
 

Last edited by thenewbreed; Feb 10, 2008 at 10:40 PM.
Reply
Old Feb 10, 2008 | 11:35 PM
  #13  
NoLongerJeepin's Avatar
Senior Member
Joined: Aug 2007
Posts: 2,472
Likes: 1
From: Des Moines, IA
thats frickin ridiculous
 
Reply




All times are GMT -4. The time now is 03:57 AM.