Merge pull request #150820 from fabaff/lmp

lmp: init at 1.0
This commit is contained in:
Fabian Affolter 2021-12-15 11:53:56 +01:00 committed by GitHub
commit 317b245bcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View file

@ -7463,6 +7463,8 @@ with pkgs;
liquidctl = with python3Packages; toPythonApplication liquidctl;
lmp = callPackage ../tools/security/lmp { };
localtime = callPackage ../tools/system/localtime { };
log4j-detect = callPackage ../tools/security/log4j-detect { };