Difference between revisions of "Summerschool Aachen 2004/Sniffing & Spoofing Lab"

From C4 Wiki
Jump to: navigation, search
(Notes on Lab Session)
Line 22: Line 22:
  
 
= Notes on Lab Session =
 
= Notes on Lab Session =
 +
 +
== Indtalling a DHCP server and Using Sniffing and Spoofing Tools ==
 +
I used this lab session with Flwong in order to install a DHCP server on a notebook and to
 +
prepare a DoS attack on the currently used DHCP server in order to use our DHCP server for
 +
spoofing wrong name server addresses, ... . However, as almost everybody left after 6 pm we did
 +
not have any time to launch the attack after installing the DHCP server. After everybody
 +
had already left, Ilja and me stayed at the department and I further tested some sniffing and spoofing tools such as tcpdump, ethereal (with hping2), nmapfe, ... .So that I got home at about
 +
10 pm.
 +
 +
-- [[Samad Nasserian]]
 +
  
 
== Implementing the RST attack in Perl ==
 
== Implementing the RST attack in Perl ==

Revision as of 22:23, 26 September 2004

Notes on Presentations

Sniffing & Spoofing

The slides can be found here

TCP reset attack

ettercap 0.8 cmd lines

with 10.0.0.1 as gw and 10.0.0.100 as client

ettercap -T -M arp:remote /10.0.0.1/ /10.0.0.100/

dsniff related links

Notes on Lab Session

Indtalling a DHCP server and Using Sniffing and Spoofing Tools

I used this lab session with Flwong in order to install a DHCP server on a notebook and to prepare a DoS attack on the currently used DHCP server in order to use our DHCP server for spoofing wrong name server addresses, ... . However, as almost everybody left after 6 pm we did not have any time to launch the attack after installing the DHCP server. After everybody had already left, Ilja and me stayed at the department and I further tested some sniffing and spoofing tools such as tcpdump, ethereal (with hping2), nmapfe, ... .So that I got home at about 10 pm.

-- Samad Nasserian


Implementing the RST attack in Perl

I have used this lab session to implement an RST based attack in a few lines of perl code, after Lutz had already written a shell script for it using nemesis and I had found out that we don't have a switch available which would allow me to have some fun with TSP. I used Net::RawIP to create the RST packets and basically loop creating more packets until the connection dies and the user cancels the script. This is pretty basic stuff, but I now finally got to actually using the mentioned module. Thanks to Mario, Thorsten and Chris for hinting me on one or the other occasion.

Work for the weekend might include semi-automating the script so you only give it a target ip (or a range of such) and it detects connections and automatically gets the needed header fields to construct the right RST packets.

-- Ernest Hammerschmidt