File: PHPClientSniffer.php

package info (click to toggle)
cream 0.43-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,260 kB
  • sloc: sh: 323; php: 261; makefile: 5
file content (334 lines) | stat: -rw-r--r-- 10,469 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
<?php
/******************************************
** Description   : PHPClientSniffer
** Version       : 1.0.0
** File Name     : PHPClientSniffer.php3
** Author        : Roger Raymond for PHyX8 studios
** Author Email  : roger.raymond@asphyxia.com
** Created       : Wednesday, August 23, 2000
** Last Modified :
** Modified By   :
*'
   INFO:
   Returns client information based on HTTP_USER_AGENT

   BASED ON WORKS AND IDEAS BY:
   Tim Perdue of PHPBuilder.com
   http://www.phpbuilder.com/columns/tim20000821.php3

   The Ultimate JavaScript Client Sniffer by Netscape.
   http://developer.netscape.com/docs/examples/javascript/NAME_type.html

   ========================================================================
   USAGE:
   ========================================================================
   include("PHPClientSniffer.php3");
   $is = new sniffer;
   ========================================================================
   VARIABLE NAMES    VALUES
   ========================================================================
   $is->UA           The HTTP USER AGENT String
   $is->NAME         Browser Name (Netscape, IE, Opera, iCab, Unknown)
   $is->VERSION      Browser Full Version
   $is->MAJORVER     Browser Major Version
   $is->MINORVER     Browser Minor Version
   $is->AOL          "1" = True/"0" = False
   $is->WEBTV        "1" = True/"0" = False
   $is->JS           Assumed JavaScript Version Supported by Browser
   $is->PLATFORM     System Platform (Win16,Win32,Mac,OS2,Unix)
   $is->OS           System OS (Win98,OS2,Mac68k,linux,bsd,etc...) see code
   $is->IP           REMOTE_ADDR

   ========================================================================

 '****************************************/
class sniffer
{  var $UA         =  "";
   var $NAME       =  "Unknown";
   var $VERSION    =  0;
   var $MAJORVER   =  0;
   var $MINORVER   =  0;
   var $AOL        =  0;
   var $WEBTV      =  0;
   var $JS         =  0.0;
   var $PLATFORM   =  "Unknown";
   var $OS         =  "Unknown";
   var $IP         =  "Unknown";

   /* START CONSTRUCTOR */
   function sniffer()
   {  $this->UA = getenv(HTTP_USER_AGENT);

      // Determine NAME Name and Version
      if ( eregi( 'MSIE ([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) ||
           eregi( 'Microsoft Internet Explorer ([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) )
      {  $this->VERSION = $info[1];
         $this->NAME = 'IE';
      }
      elseif ( eregi( 'Opera ([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) ||
               eregi( 'Opera/([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) )
      {  $this->VERSION = $info[1];
         $this->NAME = 'Opera';
      }
      elseif ( eregi( 'iCab ([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) ||
               eregi( 'iCab/([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) )
      {  $this->VERSION = $info[1];
         $this->NAME = 'iCab';
      }
      elseif ( eregi( 'Netscape6/([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) )
      {  $this->VERSION = $info[1];
         $this->NAME = 'Netscape';
      }
      elseif ( eregi( 'Mozilla/([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) )
      {  $this->VERSION = $info[1];
         $this->NAME = 'Netscape';
      }
	  //+++ myadd
      elseif ( eregi( 'Lynx/([0-9].[0-9a-zA-Z]{1,4})',$this->UA,$info) )
      {  $this->VERSION = $info[1];
         $this->NAME = 'Lynx';
      }
	  //+++
      else
      {  $this->VERSION = 0;
         $this->NAME = 'Unknown';
      }

      // Determine if AOL or WEBTV
      if( eregi( 'aol',$this->UA,$info))
      { $this->AOL = "1";
      }
      elseif( eregi( 'webtv',$this->UA,$info))
      { $this->WEBTV = "1";
      }

      // Determine Major and Minor Version
      if($this->VERSION > 0)
      {  $pos = strpos($this->VERSION,".");
         if ($pos > 0)
         {  $this->MAJORVER = substr($this->VERSION,0,$pos);
            $this->MINORVER = substr($this->VERSION,$pos,strlen($this->VERSION));
         }
         else $this->MAJORVER = $this->VERSION;
      }

      // Determine Platform and OS

      // Check for Windows 16-bit
      if( eregi('Win16',$this->UA)           ||
          eregi('windows 3.1',$this->UA)     ||
          eregi('windows 16-bit',$this->UA)  ||
          eregi('16bit',$this->UA))
      {  $this->PLATFORM = "Win16";
         $this->OS = "Win31";
      }

      // Check for Windows 32-bit
      if(eregi('Win95',$this->UA) || eregi('windows 95',$this->UA))
      {  $this->PLATFORM = "Win32";
         $this->OS = "Win95";
      }
      elseif(eregi('Win98',$this->UA) || eregi('windows 98',$this->UA))
      {  $this->PLATFORM = "Win32";
         $this->OS = "Win98";
      }
      elseif(eregi('WinNT',$this->UA) || eregi('windows NT',$this->UA))
      {  $this->PLATFORM = "Win32";
         $this->OS = "WinNT";
      }
      else
      {  $this->PLATFORM = "Win32";
         $this->OS = "Win9xNT";
      }

      // Check for OS/2
      if( eregi('os/2',$this->UA)            ||
          eregi('ibm-webexplorer',$this->UA))
      {  $this->PLATFORM = "OS2";
         $this->OS = "OS2";
      }

      // Check for Mac 68000
      if( eregi('68k',$this->UA)             ||
          eregi('68000',$this->UA))
      {  $this->PLATFORM = "Mac";
         $this->OS = "Mac68k";
      }

      //Check for Mac PowerPC
      if( eregi('ppc',$this->UA)             ||
          eregi('powerpc',$this->UA))
      {  $this->PLATFORM = "Mac";
         $this->OS = "MacPPC";
      }

      // Check for Unix Flavor

      //SunOS
      if(eregi('sunos',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "sun";
      }
      if(eregi('sunos 4',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "sun4";
      }
      elseif(eregi('sunos 5',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "sun5";
      }
      elseif(eregi('i86',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "suni86";
      }

      // Irix
      if(eregi('irix',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "irix";
      }
      if(eregi('irix 6',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "irix6";
      }
      elseif(eregi('irix 5',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "irix5";
      }

      //HP-UX
      if(eregi('hp-ux',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "hpux";
      }
      if(eregi('hp-ux',$this->UA) && ereg('10.',$this-UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "hpux10";
      }
      elseif(eregi('hp-ux',$this->UA) && ereg('09.',$this-UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "hpux9";
      }

      //AIX
      if(eregi('aix',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "aix";
      }
      if(eregi('aix1',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "aix1";
      }
      elseif(eregi('aix2',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "aix2";
      }
      elseif(eregi('aix3',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "aix3";
      }
      elseif(eregi('aix4',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "aix4";
      }

      // Linux
      if(eregi('inux',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "linux";
      }

      //Unixware
      if(eregi('unix_system_v',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "unixware";
      }

      //mpras
      if(eregi('ncr',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "mpras";
      }

      //Reliant
      if(eregi('reliantunix',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "reliant";
      }

      // DEC
      if(eregi('dec',$this->UA)           ||
         eregi('osfl',$this->UA)          ||
         eregi('alphaserver',$this->UA)   ||
         eregi('ultrix',$this->UA)        ||
         eregi('alphastation',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "dec";
      }

      // Sinix
      if(eregi('sinix',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "sinix";
      }

      // FreeBSD
      if(eregi('freebsd',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "freebsd";
      }

      // BSD
      if(eregi('bsd',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "bsd";
      }

      // VMS
      if(eregi('vax',$this->UA) || eregi('openvms',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "vms";
      }

      // SCO
      if(eregi('sco',$this->UA) || eregi('unix_sv',$this->UA))
      {  $this->PLATFORM = "Unix";
         $this->OS = "sco";
      }

      // Assume JavaScript Version

      // make the code a bit easier to read
      $ie  = eregi("ie",$this->NAME);
      $ie5 = ( eregi("ie",$this->NAME) && ($this->MAJORVER >= 5) );
      $ie4 = ( eregi("ie",$this->NAME) && ($this->MAJORVER >= 4) );
      $ie3 = ( eregi("ie",$this->NAME) && ($this->MAJORVER >= 3) );

      $nav  = eregi("netscape",$this->NAME);
      $nav5 = ( eregi("netscape",$this->NAME) && ($this->MAJORVER >= 5) );
      $nav4 = ( eregi("netscape",$this->NAME) && ($this->MAJORVER >= 4) );
      $nav3 = ( eregi("netscape",$this->NAME) && ($this->MAJORVER >= 3) );
      $nav2 = ( eregi("netscape",$this->NAME) && ($this->MAJORVER >= 2) );

      $opera = eregi("opera",$this->NAME);

      // do the assumption
      // update as new versions are released

      // Provide upward compatibilty
      if($nav && ($this->MAJORVER > 5)) $this->JS = 1.4;
      elseif($ie && ($this->MAJORVER > 5)) $this->JS = 1.3;
      // check existing versions
      elseif($nav5) $this->JS = 1.4;
      elseif(($nav4 && ($this->VERSION > 4.05)) || $ie4) $this->JS = 1.3;
      elseif(($nav4 && ($this->VERSION <= 4.05)) || $ie4) $this->JS = 1.2;
      elseif($nav3 || $opera) $this->JS = 1.1;
      elseif(($nav && ($this->MAJORVER >= 2)) || ($ie && ($this->MAJORVER >=3))) $this->JS = 1.0;
      //no idea
      else $this->JS = 0.0;

      // Grab IP Address
      $this->IP = getenv('REMOTE_ADDR');
   }
}
?>