Add ettercap, a comprehensive suite for man in the middle attacks

This commit is contained in:
Jaka Hudoklin
2013-10-03 15:35:34 +02:00
parent baf4920be8
commit f295cf2395
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libnet-${version}";
version = "1.2-rc2";
src = fetchurl {
url = "mirror://sourceforge/libnet-dev/${name}.tar.gz";
sha256 = "1pc74p839a7wvhjdgy0scj7c4yarr6mqdqvj56k6sp8pkc763az7";
};
meta = {
homepage = http://github.com/sam-github/libnet;
description = "Libnet provides a portable framework for low-level network packet construction.";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
};
}