commit
317b245bcf
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/lmp/default.nix
Normal file
25
pkgs/tools/security/lmp/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "lmp";
|
||||||
|
version = "1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "0xInfection";
|
||||||
|
repo = "LogMePwn";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-EDhNnNmIVBtBj+zHjLzW60sdI0dH8cLvXDQBmVgM4hM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "sha256-X7Djcp4reOXL6SX4jiSLicolENu7Uo5webSePYrPKug=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Scanning and validation toolkit for the Log4J vulnerability";
|
||||||
|
homepage = "https://github.com/0xInfection/LogMePwn";
|
||||||
|
license = with licenses; [ gpl3Only ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -7463,6 +7463,8 @@ with pkgs;
|
||||||
|
|
||||||
liquidctl = with python3Packages; toPythonApplication liquidctl;
|
liquidctl = with python3Packages; toPythonApplication liquidctl;
|
||||||
|
|
||||||
|
lmp = callPackage ../tools/security/lmp { };
|
||||||
|
|
||||||
localtime = callPackage ../tools/system/localtime { };
|
localtime = callPackage ../tools/system/localtime { };
|
||||||
|
|
||||||
log4j-detect = callPackage ../tools/security/log4j-detect { };
|
log4j-detect = callPackage ../tools/security/log4j-detect { };
|
||||||
|
|
Loading…
Reference in a new issue