Difference between revisions of "Summerschool Aachen 2004/Building Attacks Lab"

From C4 Wiki
Jump to: navigation, search
(Network Basics)
Line 19: Line 19:
  
 
* [http://twistedmatrix.com/  Twisted, an event-driven networking framework written in Python], [http://www.zoteca.com/information/wp/twistedusenix.pdf pdf-file]
 
* [http://twistedmatrix.com/  Twisted, an event-driven networking framework written in Python], [http://www.zoteca.com/information/wp/twistedusenix.pdf pdf-file]
 +
* [http://poe.perl.org POE - Perl Object Enviroment, really simple Servers]
 
* [http://lib.ru/PERL/perlprac/perl15.html Simple webserver in perl]
 
* [http://lib.ru/PERL/perlprac/perl15.html Simple webserver in perl]
 
* [http://pylibpcap.sourceforge.net/ python module for libpcap]
 
* [http://pylibpcap.sourceforge.net/ python module for libpcap]

Revision as of 15:06, 23 September 2004

Network Basics

The slides can be found here

Notes on Presentations

Network Basics

The second lecture today will cover the basics of network programming. Here are a few links that could help you during the lab session:

Linux clock timings

These show some measurements I have take on the Linux 2.4 kernel clock using gettimeofday(). This returns results with microsecond precision, so I wanted to make sure that this precision was significant. These graphs show that both the millisecond and microsecond parts give fairly uniform results.

Milliseconds
http://www.cl.cam.ac.uk/users/sjm217/volatile/timing_msec.png

Microseconds
http://www.cl.cam.ac.uk/users/sjm217/volatile/timing_usec.png

-- Steven Murdoch

A mathematical theory of communication

I've uploaded this famous paper by C.E. Shannon to http://berlin.ccc.de/~cc/shannon-a_mathematical_theory_of_communication.pdf.
You may download it, if you're interested.

--Cpunkt 12:21, 23 Sep 2004 (CEST)

Billy the kid

a python lib that allows you to make raw sockets.

Notes on Lab Session