nixpkgs/pkgs/tools/security/cowpatty/default.nix

27 lines
675 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, openssl, libpcap
2016-11-25 10:25:07 +00:00
}:
2021-01-15 09:19:50 +00:00
with lib;
2016-11-25 10:25:07 +00:00
stdenv.mkDerivation rec {
pname = "cowpatty";
2016-11-25 10:25:07 +00:00
version = "4.6";
buildInputs = [ openssl libpcap ];
src = fetchurl {
url = "http://www.willhackforsushi.com/code/cowpatty/${version}/${pname}-${version}.tgz";
2016-11-25 10:25:07 +00:00
sha256 = "1hivh3bq2maxvqzwfw06fr7h8bbpvxzah6mpibh3wb85wl9w2gyd";
};
installPhase = "make DESTDIR=$out BINDIR=/bin install";
meta = {
description = "Offline dictionary attack against WPA/WPA2 networks";
license = licenses.gpl2;
homepage = "https://www.willhackforsushi.com/?page_id=50";
2016-11-25 10:25:07 +00:00
maintainers = with maintainers; [ nico202 ];
platforms = platforms.linux;
};
}