Added metasploit framework for security testing using exploit database
svn path=/nixpkgs/trunk/; revision=11562
This commit is contained in:
parent
de117209bc
commit
4ca642f1ad
34
pkgs/tools/security/metasploit/3.1.nix
Normal file
34
pkgs/tools/security/metasploit/3.1.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
args : with args;
|
||||||
|
rec {
|
||||||
|
src = fetchurl {
|
||||||
|
url = http://www.packetstormsecurity.nl/UNIX/utilities/framework-3.1.tar.gz;
|
||||||
|
sha256 = "114znq9dfcyh9gcj57p3zsc0d0amlzhwidmg8qjcgxpjh28h1afx";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [makeWrapper];
|
||||||
|
configureFlags = [];
|
||||||
|
|
||||||
|
doInstall = FullDepEntry(''
|
||||||
|
ensureDir $out/share/msf
|
||||||
|
ensureDir $out/bin
|
||||||
|
|
||||||
|
cp -r * $out/share/msf
|
||||||
|
ln -s $out/share/msf/msf* $out/bin
|
||||||
|
|
||||||
|
sed -e 's@#!/usr/bin/env ruby@#! ${ruby}/bin/ruby@' -i $out/bin/msf*
|
||||||
|
|
||||||
|
for i in $out/bin/*; do
|
||||||
|
wrapProgram $i --prefix RUBYLIB : $out/share/msf/lib
|
||||||
|
done
|
||||||
|
'') ["minInit" "defEnsureDir" "doUnpack" "addInputs"];
|
||||||
|
|
||||||
|
/* doConfigure should be specified separately */
|
||||||
|
phaseNames = ["doInstall"];
|
||||||
|
|
||||||
|
name = "metasploit-framework" + version;
|
||||||
|
meta = {
|
||||||
|
description = "Metasploit Framework - a collection of exploits";
|
||||||
|
homepage = "http://framework.metasploit.org/";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user