473,320 Members | 1,817 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

need help understanding this code.

Hi,

I've been trying to figure out this javascript code used here (this code is
used for supplying browser info to a tracking company):

In particular I'm trying to understand this line:
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&
","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->

Why do they have a variable j=y defined? There is no 'j' variable defined
in the code.

If I modify the http://t0.extreme-dm.com and send the results to my ASP page
and use Querystrings to see what the values are, I only get the Screen width
and colour depth values. The referrer information is not showing. I also
don't understand how they can extract users country domain from this code.

Thanks
Tristan
www.backpackpro.com
----------- Complete code below ---------------
<a target="_top" href="http://t.extreme-dm.com/?login=abc"> <img
src="http://u1.extreme-dm.com/i.gif" height=2
border=0 width=2 alt=""></a>
<script language="javascript1.2"><!--
EXs=screen;EXw=EXs.width;navigator.appName!="Netsc ape"?
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
</script>
<script language="javascript"><!--
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
EXd.write("<img src=\"http://t0.extreme-dm.com",
"/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&",
"l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
</script>
</p>
<noscript><img height=1 width=1 alt=""
src="http://t0.extreme-dm.com/0.gif?tag=abc&j=n"></noscript>
Jul 20 '05 #1
9 1589
That's some dense shit, dude. But seriously I don't think you quoted all
the relevent code to make heads or tails of this, looks like you only
quoted the last line or two.

These two statements:

EXw?"":EXw="na";
EXb?"":EXb="na";

All they do is, if EXw and EXb are null, then set them to "na" (as in
Not Available?). But it must be somewhere earlier in the code where they
are setting EXw and EXb to initial values in the first place.

In regards to the "j=y" statement; the way you've quoted the code, the
variable j (and value y) are used entirely on the server. There is no
client-side javascript here with a variable j and value of y. You need
to look on the server side script (if you have it) to find out what the
"j=y" is all about.

Did you inherit this code from another developer, or are you trying to
*ahem* learn from some other site's techniques?

--

Bryan Field-Elliot
http://netmeme.org

Elmbrook wrote:
Hi,

I've been trying to figure out this javascript code used here (this code is
used for supplying browser info to a tracking company):

In particular I'm trying to understand this line:
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&
","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->

Why do they have a variable j=y defined? There is no 'j' variable defined
in the code.

If I modify the http://t0.extreme-dm.com and send the results to my ASP page
and use Querystrings to see what the values are, I only get the Screen width
and colour depth values. The referrer information is not showing. I also
don't understand how they can extract users country domain from this code.

Thanks
Tristan
www.backpackpro.com
----------- Complete code below ---------------
<a target="_top" href="http://t.extreme-dm.com/?login=abc"> <img
src="http://u1.extreme-dm.com/i.gif" height=2
border=0 width=2 alt=""></a>
<script language="javascript1.2"><!--
EXs=screen;EXw=EXs.width;navigator.appName!="Netsc ape"?
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
</script>
<script language="javascript"><!--
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
EXd.write("<img src=\"http://t0.extreme-dm.com",
"/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&",
"l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
</script>
</p>
<noscript><img height=1 width=1 alt=""
src="http://t0.extreme-dm.com/0.gif?tag=abc&j=n"></noscript>


Jul 20 '05 #2
In article <C3*******************@news02.tsnz.net>,
el******@paradise.nospam.net.nz says...
Hi,

I've been trying to figure out this javascript code used here (this code is
used for supplying browser info to a tracking company):

In particular I'm trying to understand this line:
EXd=document;
Set EXd to the "document" object;
EXw?"":EXw="na";
If EXw is empty, set it to "na".
EXb?"":EXb="na";
If EXb is empty, set it to "na".
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&
","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
That writes out an image using the values the script has just assigned.

Why do they have a variable j=y defined? There is no 'j' variable defined
in the code.
The "j" isn't used in the code you've given here - it may be used in the
server-side script that servers up the image, though. It's part of the
URL, not part of the JavaScript. I imagine that other users may have
"j" set to something else, otherwise there'd be no point having it.

If I modify the http://t0.extreme-dm.com and send the results to my ASP page
and use Querystrings to see what the values are, I only get the Screen width
and colour depth values.
Perhaps your ASP that's trying to get the values is broken.

The referrer information is not showing. I also
don't understand how they can extract users country domain from this code.


The won't extract the user's country domain from that code. They'll
have their server-side code do it by tracking the remote IP address (ie.
the site visitor's address) from which the request is made. It's rather
inaccurate, though.

--
Hywel I do not eat quiche
http://hyweljenkins.co.uk/
http://hyweljenkins.co.uk/mfaq.php
Jul 20 '05 #3
Ivo
"Elmbrook" <el******@paradise.nospam.net.nz> wrote in message
news:C3*******************@news02.tsnz.net...
In particular I'm trying to understand this line:
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
EXw?"":EXw="na"
is short for: if EXw has not been assigned a value in the preceding
javascript1.2 block, give it a value of "na".
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"& ","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->

Why do they have a variable j=y defined? There is no 'j' variable defined
in the code.

So what? Do you see tag, srw, srb anywhere else? This is where j gets
defined. Think of y as a string of length 1. It probably means "javascript
enabled=yes". Look in the noscript tag where you 'll find "j=n".
Jul 20 '05 #4
In article <C3*******************@news02.tsnz.net>, Elmbrook wrote:
Hi,

I've been trying to figure out this javascript code used here (this code is
used for supplying browser info to a tracking company):

In particular I'm trying to understand this line:
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
This uses

A?B:C

If A is true, then do B, otherwise do C.

If A is not a boolean test, but some variable,
then A? just checks if A is defined.

So, A?B:C does B if A is defined, otherwise it does C.

EXw?"":EXw="na"

Well, the author REALLY WANTS EXw to be defined and if
it is not defined he wants to define it a the string
"na" (not available or not applicabe)..

EXw ? "" : EXw="na"

IS EXw defined? If, nothing Otherwise define it
leave it alone as "na"
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&
","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
That creates a URL:

"0.gif?tag=abc&j=y&srw..."
Why do they have a variable j=y defined? There is no 'j' variable defined
in the code.


The "j" is inside the string. It is not a JavaScript variable, but just
text. IF that works (the document.write, sicne EXd is the document,
then it must have been written by JavaScript. I would guess the tag
will be interpreted as the author (when he checks his web logs and
sees this) as JavaScript IS enabled (j=y) (or else this won't even
be written to the documnet).
Jul 20 '05 #5
I'm trying to figure out how I can record the statistics of the visitors to
my website, where they came from etc and send this to an ASP page.

Are there Javascripts available for recording, referreal, domain etc?

Thanks for your help
"Bryan Field-Elliot" <br***@netmeme.org> wrote in message
news:IhIdb.455117$Oz4.260098@rwcrnsc54...
That's some dense shit, dude. But seriously I don't think you quoted all
the relevent code to make heads or tails of this, looks like you only
quoted the last line or two.

These two statements:

EXw?"":EXw="na";
EXb?"":EXb="na";

All they do is, if EXw and EXb are null, then set them to "na" (as in
Not Available?). But it must be somewhere earlier in the code where they
are setting EXw and EXb to initial values in the first place.

In regards to the "j=y" statement; the way you've quoted the code, the
variable j (and value y) are used entirely on the server. There is no
client-side javascript here with a variable j and value of y. You need
to look on the server side script (if you have it) to find out what the
"j=y" is all about.

Did you inherit this code from another developer, or are you trying to
*ahem* learn from some other site's techniques?

--

Bryan Field-Elliot
http://netmeme.org

Elmbrook wrote:
Hi,

I've been trying to figure out this javascript code used here (this code is used for supplying browser info to a tracking company):

In particular I'm trying to understand this line:
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"& ","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->

Why do they have a variable j=y defined? There is no 'j' variable defined in the code.

If I modify the http://t0.extreme-dm.com and send the results to my ASP page and use Querystrings to see what the values are, I only get the Screen width and colour depth values. The referrer information is not showing. I also don't understand how they can extract users country domain from this code.
Thanks
Tristan
www.backpackpro.com
----------- Complete code below ---------------
<a target="_top" href="http://t.extreme-dm.com/?login=abc"> <img
src="http://u1.extreme-dm.com/i.gif" height=2
border=0 width=2 alt=""></a>
<script language="javascript1.2"><!--
EXs=screen;EXw=EXs.width;navigator.appName!="Netsc ape"?
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
</script>
<script language="javascript"><!--
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
EXd.write("<img src=\"http://t0.extreme-dm.com",
"/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&",
"l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
</script>
</p>
<noscript><img height=1 width=1 alt=""
src="http://t0.extreme-dm.com/0.gif?tag=abc&j=n"></noscript>

Jul 20 '05 #6
Spamless <Sp******@Nil.nil> writes:
This uses

A?B:C

If A is true, then do B, otherwise do C. If A is not a boolean test, but some variable,
then A? just checks if A is defined.
That is not strictly correct.

If A is an undeclared variable, then "A?B:C" fails with an "undeclared
variable". If A is a declared variable, then its value is converted to
a boolean (as by the Boolean function). The values that are converted
to false are: 0, NaN, undefined, null, "" (empty string), and false
itself.

So, if A is defined but has the value 0, the "else" branch is still
used.
EXw?"":EXw="na"


personally, I would have written:

EXw = EXw || "na";

It has the same effect, is easier to read (IMHO), and is even shorter.

What he really means is
if(!EXw)EXw="na";
but that is one charater longer.

Where "if" is a statement that selects one of two *statements* based
on a conditional expression, the ?:-operator is an expression that
selects one of two expressions based on a condition. The original
author uses it as a statement, which *I* think is bad style.

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #7
All this stuff should be done server-side (e.g. ASP, JSP, Perl,
whatever), rather than client-side (e.g. Javascript). From the server,
you should have access to the referring URL and the IP address of the
client (and from there, you can find their domoain). All this and more
in the HTTP headers. No client-side Javascript required (or even useful).

Better yet, your web server is probably already keeping this information
in it's logs. Apache and IIS both support standard "Common" format for
web hit logs, which includes client IP address and referring URL.

Good luck,

--

Bryan Field-Elliot
http://netmeme.org

Elmbrook wrote:
I'm trying to figure out how I can record the statistics of the visitors to
my website, where they came from etc and send this to an ASP page.

Are there Javascripts available for recording, referreal, domain etc?

Thanks for your help


Jul 20 '05 #8
Thanks, but the problem is that some of my webpages are static and are being
served by my local ISP. So when I found that this company had a way of
sending stats to their server from my static page, I was interested in how
they did it.

"Elmbrook" <el******@paradise.nospam.net.nz> wrote in message
news:0b*******************@news02.tsnz.net...
I'm trying to figure out how I can record the statistics of the visitors to my website, where they came from etc and send this to an ASP page.

Are there Javascripts available for recording, referreal, domain etc?

Thanks for your help
"Bryan Field-Elliot" <br***@netmeme.org> wrote in message
news:IhIdb.455117$Oz4.260098@rwcrnsc54...
That's some dense shit, dude. But seriously I don't think you quoted all
the relevent code to make heads or tails of this, looks like you only
quoted the last line or two.

These two statements:

EXw?"":EXw="na";
EXb?"":EXb="na";

All they do is, if EXw and EXb are null, then set them to "na" (as in
Not Available?). But it must be somewhere earlier in the code where they
are setting EXw and EXb to initial values in the first place.

In regards to the "j=y" statement; the way you've quoted the code, the
variable j (and value y) are used entirely on the server. There is no
client-side javascript here with a variable j and value of y. You need
to look on the server side script (if you have it) to find out what the
"j=y" is all about.

Did you inherit this code from another developer, or are you trying to
*ahem* learn from some other site's techniques?

--

Bryan Field-Elliot
http://netmeme.org

Elmbrook wrote:
Hi,

I've been trying to figure out this javascript code used here (this code
is
used for supplying browser info to a tracking company):

In particular I'm trying to understand this line:
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
and this one: EXd.write("<img
src=\"http://t0.extreme-dm.com","/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"& ","l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->

Why do they have a variable j=y defined? There is no 'j' variable

defined in the code.

If I modify the http://t0.extreme-dm.com and send the results to my
ASP page and use Querystrings to see what the values are, I only get the Screen width and colour depth values. The referrer information is not showing. I also don't understand how they can extract users country domain from this code.
Thanks
Tristan
www.backpackpro.com
----------- Complete code below ---------------
<a target="_top" href="http://t.extreme-dm.com/?login=abc"> <img
src="http://u1.extreme-dm.com/i.gif" height=2
border=0 width=2 alt=""></a>
<script language="javascript1.2"><!--
EXs=screen;EXw=EXs.width;navigator.appName!="Netsc ape"?
EXb=EXs.colorDepth:EXb=EXs.pixelDepth;//-->
</script>
<script language="javascript"><!--
EXd=document;EXw?"":EXw="na";EXb?"":EXb="na";
EXd.write("<img src=\"http://t0.extreme-dm.com",
"/0.gif?tag=abc&j=y&srw="+EXw+"&srb="+EXb+"&",
"l="+escape(EXd.referrer)+"\" height=1 width=1>");//-->
</script>
</p>
<noscript><img height=1 width=1 alt=""
src="http://t0.extreme-dm.com/0.gif?tag=abc&j=n"></noscript>


Jul 20 '05 #9
In article <he**********@hotpop.com>, Lasse Reichstein Nielsen wrote:
Spamless <Sp******@Nil.nil> writes:
This uses

A?B:C

If A is true, then do B, otherwise do C.
If A is not a boolean test, but some variable,
then A? just checks if A is defined.


That is not strictly correct.

If A is an undeclared variable, then "A?B:C" fails with an "undeclared
variable". If A is a declared variable, then its value is converted to
a boolean (as by the Boolean function). The values that are converted
to false are: 0, NaN, undefined, null, "" (empty string), and false
itself.


Yes. I should have been clearer.

var A;

declares A (but it hasn't been defined to be anything)
and A?"":A="na"
will define it.

Without declaring it, you should just get an error.

(I hope the author of the page delcared A somewhere ...)
So, if A is defined but has the value 0, the "else" branch is still
used.


Yes, that's true too.
Jul 20 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Mike | last post by:
Hey guys, need some help understanding some things that maybe someone can explain or clarify it a little better then a text book. Here is my understanding so far: Class - basically a shell for...
19
by: James Fortune | last post by:
I have a lot of respect for David Fenton and Allen Browne, but I don't understand why people who know how to write code to completely replace a front end do not write something that will automate...
26
by: Bail | last post by:
I will have a exam on the oncoming friday, my professor told us that it will base upon this program. i am having troubles understanding this program, for example what if i want to add all the...
8
by: BJ | last post by:
Problem: How can I code up a client side process to detect if the network is available? Synopsis: I am writing ASP.NET input forms for a Panasonic Tuff book. The users will be walking around...
2
by: Martin | last post by:
Hello, We are in the process of putting together an A class PHP Development team(ecommerce / billing applications) for a project in the Bay Area. Reqt. details: ReqId : Req-3616 - Senior PHP...
22
by: the_grove_man | last post by:
I purchased a book titled "Pro ASP.NET 2.0" to get up to speed on web stuff because I ususally do Windows Form Applications.. But in the first chapters I was reading this week it brought to mind...
9
by: MrHelpMe | last post by:
Hello again experts, I have successfully pulled data from an LDAP server and now what I want to do is drop the data into a database table. The following is my code that will insert the data but...
8
by: boki_pfc | last post by:
Hi Everybody, I am looking for an advice on following: I have that "pleasure" of reading C++ codes that have been written by person(s) that have not attended the same C++ classes that I did or...
6
by: Steven W. Orr | last post by:
Given the following code: (I hope it's as simple as possible) :-) #! /usr/bin/python import new class BASE: def __init__( self ): print 'Hello from BASE init' def m1( self ): print 'M1 Base:...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.