52
Messing with JS & the DOM to analyse the Network Philip Tellis / [email protected] JSConf.eu / 2011-10-01 JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 1

Messing with JavaScript and the DOM to measure network characteristics

Embed Size (px)

DESCRIPTION

My talk from JSConf.eu: http://jsconf.eu/2011/messing_with_javascript_and_th.html

Citation preview

Page 1: Messing with JavaScript and the DOM to measure network characteristics

Messing with JS & the DOM to analyse theNetwork

Philip Tellis / [email protected]

JSConf.eu / 2011-10-01

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 1

Page 2: Messing with JavaScript and the DOM to measure network characteristics

HTTP/TCP/IP

Developed by three guys with one beard between them

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 2

Page 3: Messing with JavaScript and the DOM to measure network characteristics

JavaScript: The good parts

Discovered by one guy with one beard on him

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 3

Page 4: Messing with JavaScript and the DOM to measure network characteristics

Let’s play with the nasty parts

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 4

Page 5: Messing with JavaScript and the DOM to measure network characteristics

1Latency

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 5

Page 6: Messing with JavaScript and the DOM to measure network characteristics

1 Blinkenlichten

It takes about 23ms for light to get from Berlin to NY(35ms through fibre)

Image from http://cablemap.info

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 6

Page 7: Messing with JavaScript and the DOM to measure network characteristics

1 HTTP

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 7

Page 8: Messing with JavaScript and the DOM to measure network characteristics

So to measure latency, we need to send 1 packet each way, andtime it

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 8

Page 9: Messing with JavaScript and the DOM to measure network characteristics

1 Network latency in JavaScript

var ts, rtt, img = new Image;img.onload=function() { rtt=(+new Date - ts) };ts = +new Date;img.src="/1x1.gif";

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 9

Page 10: Messing with JavaScript and the DOM to measure network characteristics

2TCP handshake

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 10

Page 11: Messing with JavaScript and the DOM to measure network characteristics

2 ACK-ACK-ACK

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 11

Page 12: Messing with JavaScript and the DOM to measure network characteristics

2 Connection: keep-alive

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 12

Page 13: Messing with JavaScript and the DOM to measure network characteristics

2 Network latency & TCP handshake in JavaScript

var t=[], n=2, tcp, rtt;var ld = function() {

t.push(+new Date);if(t.length > n)done();

else {var img = new Image;img.onload = ld;img.src="/1x1.gif?" + Math.random()

+ ’=’ + new Date;}

};var done = function() {

rtt=t[2]-t[1];tcp=t[1]-t[0]-rtt;

};ld();

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 13

Page 14: Messing with JavaScript and the DOM to measure network characteristics

The astute reader will notice that we’ve ignored DNS lookuptime here... how would you measure it?

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 14

Page 15: Messing with JavaScript and the DOM to measure network characteristics

1 Notes

• 1x1 gif is 35 bytes• including HTTP headers, is smaller than a TCP packet• Fires onload on all browsers• 0 byte image fires onerror• which is indistinguishable from network error

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 15

Page 16: Messing with JavaScript and the DOM to measure network characteristics

3Network Throughput

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 16

Page 17: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

sizedownload_time

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 17

Page 18: Messing with JavaScript and the DOM to measure network characteristics

3 Network Throughput in JavaScript

// Assume global object// image={ url: ..., size: ... }var ts, rtt, bw, img = new Image;img.onload=function() {

rtt=(+new Date - ts);bw = image.size*1000/rtt; // rtt is in ms

};ts = +new Date;img.src=image.url;

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 18

Page 19: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

If it were that simple, I wouldn’t be doing a talk at @jsconfeu

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 19

Page 20: Messing with JavaScript and the DOM to measure network characteristics

3 TCP Slow Start

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 20

Page 21: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

So to make the best use of bandwidth, we need resources that fitin a TCP window

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 21

Page 22: Messing with JavaScript and the DOM to measure network characteristics

3 There is no single size that will tax all available networks

http://www.yuiblog.com/blog/2010/04/08/analyzing-bandwidth-and-latency/

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 22

Page 23: Messing with JavaScript and the DOM to measure network characteristics

3 Network Throughput in JavaScript – Take 2

// image object is now an array of multiple imagesvar i=0;var ld = function() {

if(i>0)image[i-1].end = +new Date;

if(i >= image.length)done();

else {var img = new Image;img.onload = ld;image[i].start = +new Date;img.src=image[i].url;

}i++;

};

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 23

Page 24: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

Slow network connection, meet really huge image

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 24

Page 25: Messing with JavaScript and the DOM to measure network characteristics

3 Network Throughput in JavaScript – Take 3

var img = new Image;img.onload = ld;image[i].start = +new Date;image[i].timer =

setTimeout(function() {image[i].expired=true

},image[i].timeout);

img.src=image[i].url;

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 25

Page 26: Messing with JavaScript and the DOM to measure network characteristics

3 Network Throughput in JavaScript – Take 3

if(i>0) {image[i-1].end = +new Date;clearTimeout(image[i-1].timer);

}

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 26

Page 27: Messing with JavaScript and the DOM to measure network characteristics

3 Network Throughput in JavaScript – Take 3

if(i >= image.length|| (i > 0 && image[i-1].expired)) {

done();}

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 27

Page 28: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

Are we done yet?

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 28

Page 29: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

Are we done yet?sure...

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 28

Page 30: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

Except network throughput is different every time you test it

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 29

Page 31: Messing with JavaScript and the DOM to measure network characteristics

Statistics to the Rescue

flickr/sophistechate/4264466015/

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 30

Page 32: Messing with JavaScript and the DOM to measure network characteristics

3 Measuring Network Throughput

The code for that is NOT gonna fit on a slide

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 31

Page 33: Messing with JavaScript and the DOM to measure network characteristics

4DNS

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 32

Page 34: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS

time_with_dns − time_without_dns

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 33

Page 35: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS in JavaScript

var t=[], dns, ip, hosts=[’http://hostname.com/’,’http://ip.ad.dr.ess/’];

var ld = function() {t.push(+new Date);if(t.length > hosts.length)done();

else {var img = new Image;img.onload = ld;img.src=hosts[t.length-1] + "/1x1.gif";

}};var done = function() {

ip=t[2]-t[1];dns=t[1]-t[0]-ip;

};ld();

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 34

Page 36: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS

What if DNS were already cached?

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 35

Page 37: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS

What if DNS were already cached?Use a wildcard DNS entry

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 35

Page 38: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS

What if you map DNS based on geo location?

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 36

Page 39: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS

What if you map DNS based on geo location?A little more complicated, but doable

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 36

Page 40: Messing with JavaScript and the DOM to measure network characteristics

4 Measuring DNS

Full code in boomerang’s DNS plugin

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 37

Page 41: Messing with JavaScript and the DOM to measure network characteristics

5IPv6

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 38

Page 42: Messing with JavaScript and the DOM to measure network characteristics

5 Measuring IPv6 support and latency

1 Try to load image from IPv6 host• If timeout or error, then no IPv6 support• If successful, then calculate latency and proceed

2 Try to load image from hostname that resolves only to IPv6host

• If timeout or error, then DNS server doesn’t support IPv6• If successful, calculate latency

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 39

Page 43: Messing with JavaScript and the DOM to measure network characteristics

5 Measuring IPv6 support and latency

Full code in boomerang’s IPv6 plugin

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 40

Page 44: Messing with JavaScript and the DOM to measure network characteristics

6Private Network Scanning

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 41

Page 45: Messing with JavaScript and the DOM to measure network characteristics

6 Private Network Scanning

JavaScript in the browser runs with the User’s SecurityPrivileges

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 42

Page 46: Messing with JavaScript and the DOM to measure network characteristics

6 Private Network Scanning

This means you can see the user’s private LAN

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 43

Page 47: Messing with JavaScript and the DOM to measure network characteristics

6 Private Network Scanning – Gateways

1 Look at common gateway IPs: 192.168.1.1, 10.0.0.1, etc.2 When found, look for common image URLs assuming

various routers/DSL modems3 When found, try to log in with default username/password

if you’re lucky, the user is already logged in

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 44

Page 48: Messing with JavaScript and the DOM to measure network characteristics

6 Private Network Scanning – Services

1 Scan host range on private network for common ports (80,22, 3306, etc.)

2 Measure how long it takes to onerror• Short timeout: connection refused• Long timeout: something listening, but it isn’t HTTP• Longer timeout: probably HTTP, but not an image

3 Try an iframe instead of an image

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 45

Page 49: Messing with JavaScript and the DOM to measure network characteristics

–.done()

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 46

Page 50: Messing with JavaScript and the DOM to measure network characteristics

Code/References

• http://github.com/bluesmoon/boomerang

• http://samy.pl/mapxss/

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 47

Page 51: Messing with JavaScript and the DOM to measure network characteristics

• Philip Tellis• LogNormal.com• [email protected]

• @bluesmoon• geek paranoid speedfreak• http://bluesmoon.info/

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 48

Page 52: Messing with JavaScript and the DOM to measure network characteristics

Thank you

JSConf.eu / 2011-10-01 Messing with JS & the DOM to analyse the Network 49