in reply to recreate dsniff in perl

If you are familiar with, say, C, you could consider the (possibly non-trivial) task of creating Perl bindings for the ethereal dlls/shared libraries.

They have a developers' list where you can get help and support. It might make a nice contribution to the Community.

Replies are listed 'Best First'.
Re^2: recreate dsniff in perl
by nashr (Novice) on Jan 23, 2005 at 02:01 UTC
    Actually, everything I want to do is already done in Ethereal. I'm writing my own sniffer engine in Perl. I'm not doing full decode of data, only gathering stats into a MySQL database for evaluation via SQL. The dsniff idea is a spinoff of that project. All I want to do is take the tcp payload data and figure out how to grab the GETs out of the stream. If you take my sample code and run it, you'll see what I'm faced with. I believe a regex would do the trick, but I just don't know that much about it yet. I guess that's where I'll start my reading. If you want to check out my sniffer project, go here. Thanks for the feedback.