Merge pull request #20710 from nico202/cowpatty

coWPAtty: init at 4.6
This commit is contained in:
Frederik Rietdijk
2016-11-25 12:44:57 +01:00
committed by GitHub
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{ stdenv, fetchurl, openssl, libpcap
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "cowpatty-${version}";
version = "4.6";
buildInputs = [ openssl libpcap ];
src = fetchurl {
url = "http://www.willhackforsushi.com/code/cowpatty/${version}/${name}.tgz";
sha256 = "1hivh3bq2maxvqzwfw06fr7h8bbpvxzah6mpibh3wb85wl9w2gyd";
};
installPhase = "make DESTDIR=$out BINDIR=/bin install";
meta = {
description = "Offline dictionary attack against WPA/WPA2 networks";
license = licenses.gpl2;
homepage = http://www.willhackforsushi.com/?page_id=50;
maintainers = with maintainers; [ nico202 ];
platforms = platforms.linux;
};
}