Merge pull request #3236 from bosu/volatility
Add volatility: memory forensics framework
This commit is contained in:
commit
e75d92791e
|
@ -0,0 +1,22 @@
|
||||||
|
{ stdenv, fetchurl, buildPythonPackage, pycrypto }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
namePrefix = "";
|
||||||
|
name = "volatility-2.3.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://volatility.googlecode.com/files/${name}.tar.gz";
|
||||||
|
sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pycrypto ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://code.google.com/p/volatility;
|
||||||
|
description = "advanced memory forensics framework";
|
||||||
|
maintainers = with maintainers; [ bosu ];
|
||||||
|
license = "GPLv2+";
|
||||||
|
};
|
||||||
|
}
|
|
@ -2218,6 +2218,8 @@ let
|
||||||
|
|
||||||
vacuum = callPackage ../applications/networking/instant-messengers/vacuum {};
|
vacuum = callPackage ../applications/networking/instant-messengers/vacuum {};
|
||||||
|
|
||||||
|
volatility = callPackage ../tools/security/volatility { };
|
||||||
|
|
||||||
vidalia = callPackage ../tools/security/vidalia { };
|
vidalia = callPackage ../tools/security/vidalia { };
|
||||||
|
|
||||||
vbetool = builderDefsPackage ../tools/system/vbetool {
|
vbetool = builderDefsPackage ../tools/system/vbetool {
|
||||||
|
|
Loading…
Reference in New Issue