mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
commit
310b5fb7be
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/security/cowpatty/default.nix
Normal file
26
pkgs/tools/security/cowpatty/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -1284,6 +1284,8 @@ in
|
|||
|
||||
corkscrew = callPackage ../tools/networking/corkscrew { };
|
||||
|
||||
cowpatty = callPackage ../tools/security/cowpatty { };
|
||||
|
||||
cpio = callPackage ../tools/archivers/cpio { };
|
||||
|
||||
crackxls = callPackage ../tools/security/crackxls { };
|
||||
|
|
Loading…
Reference in a new issue