Adding reaver-wps.

This commit is contained in:
Lluís Batlle i Rossell 2013-04-26 17:06:20 +04:00
parent 607437122b
commit 678e983f5e
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchurl, libpcap, sqlite }:
stdenv.mkDerivation rec {
name = "reaver-wps-1.4";
src = fetchurl {
url = http://reaver-wps.googlecode.com/files/reaver-1.4.tar.gz;
sha256 = "0bdjai4p8xbsw8zdkkk43rgsif79x0nyx4djpyv0mzh59850blxd";
};
buildInputs = [ libpcap sqlite ];
prePatch = ''
cd src
'';
preInstall = ''
ensureDir $out/bin
'';
meta = {
description = "Brute force attack against Wifi Protected Setup";
homepage = http://code.google.com/p/reaver-wps;
license = "GPLv2+";
};
}

View File

@ -1483,6 +1483,8 @@ let
rtmpdump = callPackage ../tools/video/rtmpdump { };
reaverwps = callPackage ../tools/networking/reaver-wps {};
recutils = callPackage ../tools/misc/recutils { };
recoll = callPackage ../applications/search/recoll { };